-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathControl_Constructor.d.ts
28 lines (27 loc) · 1.16 KB
/
Control_Constructor.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
import { BackgroundControl } from "./BackgroundControl";
import { BackgroundPositionControl } from "./BackgroundPositionControl";
import { CodeEditorControl } from "./CodeEditorControl";
import { ColorControl } from "./ColorControl";
import { Control } from "./Control";
import { CroppedImageControl } from "./CroppedImageControl";
import { DateTimeControl } from "./DateTimeControl";
import { HeaderControl } from "./HeaderControl";
import { ImageControl } from "./ImageControl";
import { MediaControl } from "./MediaControl";
import { SiteIconControl } from "./SiteIconControl";
import { ThemeControl } from "./ThemeControl";
import { UploadControl } from "./UploadControl";
export interface Control_Constructor {
color: typeof ColorControl;
media: typeof MediaControl;
upload: typeof UploadControl;
image: typeof ImageControl;
cropped_image: typeof CroppedImageControl;
site_icon: typeof SiteIconControl;
header: typeof HeaderControl;
background: typeof BackgroundControl;
background_position: typeof BackgroundPositionControl;
theme: typeof ThemeControl;
date_time: typeof DateTimeControl;
code_editor: typeof CodeEditorControl;
}