-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomize.d.ts
71 lines (65 loc) · 2.25 KB
/
Customize.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { Class } from "./Class";
import { Control } from "./Control";
import { Control_Constructor } from "./Control_Constructor";
import { Element } from "./Element";
import { Notifications } from "./Notifications";
import { Panel } from "./Panel";
import { Panel_Constructor } from "./Panel_Constructor";
import { Previewer } from "./Previewer";
import { Section } from "./Section";
import { Section_Constructor } from "./Section_Constructor";
import { Setting } from "./Setting";
import { Setting_Constructor } from "./Setting_Constructor";
import { Utils } from "./Utils";
import { Values } from "./Values";
export interface DirtyValuesOptions {
unsaved?: boolean | undefined;
}
export interface RequestChangesetUpdateOptions {
autosave?: boolean | undefined;
force?: boolean | undefined;
title?: string | undefined;
date?: string | undefined;
}
export interface HandleSettingValiditiesArgs {
settingValidities: Record<string, any>; // TODO
focusInvalidControl?: boolean | undefined;
}
export interface Customize extends Values<Setting<any>> {
_latestRevision: number;
_lastSavedRevision: number;
_latestSettingRevision: Record<string, number>;
// (a: any, b?: any): any; // TODO
utils: Utils;
ensure(element: string | JQuery): JQuery;
dirtyValues(options?: DirtyValuesOptions): Record<string, any>;
requestChangesetUpdate(
changes?: Record<string, any>,
args?: RequestChangesetUpdateOptions
): JQuery.Promise<any>;
get(): Record<string, any>;
defaultConstructor: Setting<Class>;
control: Values<Control>;
section: Values<Section>;
panel: Values<Panel>;
notifications: Notifications;
setDocumentTitle(documentTitle: string): void;
settingConstructor: Setting_Constructor;
controlConstructor: Control_Constructor;
panelConstructor: Panel_Constructor;
sectionConstructor: Section_Constructor;
_handleSettingValidities(args: HandleSettingValiditiesArgs): void;
findControlsForSettings(
settingIds: readonly string[]
): Record<string, Control>;
reflowPaneContents(): void;
state: Values<Class>;
settings: any; // TODO
l10n: Record<string, string>;
previewer: Previewer<string>;
// Added by @contactjavas which himself not sure about the type
// TODO: Not really to do, just noting it down :)
Control: Control;
Element: Element;
[key: string]: any;
}