1Panel/node_modules/md-editor-v3/lib/MdEditor/config.d.ts
ssongliu e7af9de9ed feat: 增加从快照恢复功能
feat: 增加升级备份与恢复
2023-01-30 21:11:12 +08:00

26 lines
969 B
Go

import { CodeCss, Config, ConfigOption, Footers, StaticTextDefault } from './type';
export declare const prefix = "md-editor";
export declare const defaultEditorId = "md-editor-v3";
export declare const iconfontUrl = "https://at.alicdn.com/t/c/font_2605852_gymddm8qwtd.js";
export declare const cdnBase = "https://cdnjs.cloudflare.com/ajax/libs";
export declare const highlightUrl: string;
export declare const prettierUrl: {
main: string;
markdown: string;
};
export declare const cropperUrl: {
css: string;
js: string;
};
export declare const screenfullUrl: string;
export declare const allToolbar: string[];
export declare const allFooter: Array<Footers>;
export declare const staticTextDefault: StaticTextDefault;
export declare const mermaidUrl: string;
export declare const katexUrl: {
js: string;
css: string;
};
export declare const codeCss: CodeCss;
export declare const configOption: ConfigOption;
export declare const config: Config;