-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
26 lines (24 loc) · 788 Bytes
/
index.d.ts
File metadata and controls
26 lines (24 loc) · 788 Bytes
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
import { IPluginManifest } from "./IPluginManifest";
export * from "./IAsyncData";
export * from "./IContentProps";
export * from "./IContextDef";
export * from "./IDataAdapter";
export * from "./IDataAdapterConfig";
export * from "./IDataSource";
export * from "./IDataWatcher";
export * from "./ILiveContentProps";
export * from "./ILogger";
export * from "./IModuleDef";
export * from "./IModuleInlineDef";
export * from "./IPageDef";
export * from "./IPlugin";
export * from "./IPluginApi";
export * from "./ITranslation";
export * from "./LoadStatus";
export * from "./IPluginManifest";
declare global {
/**
* The manifest for this plugin (available only in plugin code as a webpack pre-processed variable)
*/
export const __plugin_manifest__: IPluginManifest;
}