mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
// Type definitions for EpicEditor 0.2
|
|
// Project: http://epiceditor.com/
|
|
// Definitions by: Boris Yankov <https://github.com/borisyankov>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
interface EpicEditorOptions {
|
|
container?: any;
|
|
textarea?: any;
|
|
basePath?: string;
|
|
clientSideStorage?: boolean;
|
|
localStorageName?: string;
|
|
useNativeFullsreen?: boolean;
|
|
parser?: any;
|
|
file?: {
|
|
name: string;
|
|
defaultContent: string;
|
|
autoSave: any;
|
|
};
|
|
theme?: {
|
|
base: string;
|
|
preview: string;
|
|
editor: string;
|
|
};
|
|
focusOnLoad?: boolean;
|
|
shortcut?: {
|
|
modifier: number;
|
|
fullscreen: number;
|
|
preview: number;
|
|
};
|
|
string?: {
|
|
togglePreview: string;
|
|
toggleEdit: string;
|
|
toggleFullscreen: string;
|
|
};
|
|
}
|
|
|
|
declare class EpicEditor {
|
|
constructor();
|
|
constructor(options: EpicEditorOptions);
|
|
|
|
load(callback?: Function): EpicEditor;
|
|
unload(callback?: Function): EpicEditor;
|
|
getElement(element: string): any;
|
|
is(state: string): boolean;
|
|
open(filename: string): any;
|
|
importFile(filename?: string, content?: string): void;
|
|
exportFile(filename?: string, type?: string): any;
|
|
rename(oldName: string, newName: string): void;
|
|
save(): void;
|
|
remove(filename: string): void;
|
|
getFiles(filename?: string): any;
|
|
on(event: string, handler: Function): void;
|
|
emit(event: string): void;
|
|
removeListener(event: string, handler?: Function): void;
|
|
preview(): void;
|
|
edit(): void;
|
|
enterFullscreen(): void;
|
|
exitFullscreen(): void;
|
|
reflow(type?: string): void;
|
|
} |