kui-utils 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.js.map +1 -1
- package/index.d.ts +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -189,7 +189,7 @@ declare const _default: ({
|
|
|
189
189
|
})[];
|
|
190
190
|
|
|
191
191
|
declare type KUIUtilsSettingsParams = {
|
|
192
|
-
runMode?: "
|
|
192
|
+
runMode?: "production" | "development" | "test";
|
|
193
193
|
};
|
|
194
194
|
declare type KUICrmObserver = (settings: KUIUtilsSettingsParams) => void;
|
|
195
195
|
declare class KUIUtilsSettings {
|
|
@@ -198,7 +198,7 @@ declare class KUIUtilsSettings {
|
|
|
198
198
|
id: number;
|
|
199
199
|
constructor();
|
|
200
200
|
getSettings: () => {
|
|
201
|
-
runMode?: "
|
|
201
|
+
runMode?: "production" | "development" | "test" | undefined;
|
|
202
202
|
};
|
|
203
203
|
setSettings: (newSettings: KUIUtilsSettingsParams) => void;
|
|
204
204
|
subscribeToSettings: (observer: KUICrmObserver) => void;
|