UNPKG

redactor-wysiwyg

Version:
21 lines (19 loc) 455 B
interface JQuery { /** * Initialize redactor editor */ redactor(options: IRedactorOptions): void; /** * Overloaded method to call an API method */ redactor(cmd: string, value?: any): any; } interface IRedactorOptions { plugins?: string[]; imageUpload: string; fileUpload: string; imageManagerJson?: string; imageUploadParam?: string; fileUploadParam?: string; definedLinks?: string; }