-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
76 lines (73 loc) · 2.4 KB
/
index.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
72
73
74
75
76
/// <reference types="jquery" />
import { Customize } from "./Customize";
import { BackgroundControl } from "./BackgroundControl";
import { BackgroundPositionControl } from "./BackgroundPositionControl";
import { Class } from "./Class";
import { CodeEditorControl } from "./CodeEditorControl";
import { ColorControl } from "./ColorControl";
import { Control } from "./Control";
import { CroppedImageControl } from "./CroppedImageControl";
import { DateTimeControl } from "./DateTimeControl";
import { Element } from "./Element";
import { Events } from "./Events";
import { HeaderControl } from "./HeaderControl";
import { ImageControl } from "./ImageControl";
import { MediaControl } from "./MediaControl";
import { Messenger } from "./Messenger";
import { Notification } from "./Notification";
import { Notifications } from "./Notifications";
import { OuterSection } from "./OuterSection";
import { OverlayNotification } from "./OverlayNotification";
import { Panel } from "./Panel";
import { Previewer } from "./Previewer";
import { PreviewFrame } from "./PreviewFrame";
import { PreviewLinkControl } from "./PreviewLinkControl";
import { Section } from "./Section";
import { Setting } from "./Setting";
import { SiteIconControl } from "./SiteIconControl";
import { ThemeControl } from "./ThemeControl";
import { ThemesPanel } from "./ThemesPanel";
import { ThemesSection } from "./ThemesSection";
import { UploadControl } from "./UploadControl";
import { Value } from "./Value";
import { Values } from "./Values";
declare global {
namespace wordpress__customize {
export {
BackgroundControl,
BackgroundPositionControl,
Class,
CodeEditorControl,
ColorControl,
Control,
CroppedImageControl,
DateTimeControl,
Element,
Events,
HeaderControl,
ImageControl,
MediaControl,
Messenger,
Notification,
Notifications,
OuterSection,
OverlayNotification,
Panel,
Previewer,
PreviewFrame,
PreviewLinkControl,
Section,
Setting,
SiteIconControl,
ThemeControl,
ThemesPanel,
ThemesSection,
UploadControl,
Value,
Values,
};
}
const wp: {
customize: Customize;
};
}