[ACS-8001] hide under the feature flag

This commit is contained in:
Mykyta Maliarchuk
2024-08-07 14:01:04 +02:00
parent 10462855b4
commit a939547f9f
12 changed files with 80 additions and 21 deletions

View File

@@ -17,6 +17,6 @@
export interface Dictionary<T> {
[key: string]: T;
};
}
export type Constructor<T> = new (...args: any[]) => T;