builder-settings-types 0.0.318 → 0.0.320
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/dist/base/settings.d.ts
CHANGED
|
@@ -28,10 +28,12 @@ export declare abstract class Setting<T, P extends SettingProps<T>> implements I
|
|
|
28
28
|
static DefaultUploadUrl: string;
|
|
29
29
|
static DefaultLanguage: string;
|
|
30
30
|
private static currentLanguage;
|
|
31
|
+
private static currentLanguageExplicitlySet;
|
|
31
32
|
private static languageChangeCallbacks;
|
|
32
33
|
static SetUploadUrl(url: string): void;
|
|
33
34
|
static SetDefaultLanguage(lng: string): void;
|
|
34
35
|
static CurrentLanguage(lang?: string): string;
|
|
36
|
+
static HasExplicitCurrentLanguage(): boolean;
|
|
35
37
|
static onLanguageChange(callback: (lang: string) => void): () => void;
|
|
36
38
|
static GlobalVariables: Record<string, string>;
|
|
37
39
|
static GlobalVariableGroups: {
|