mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-15 04:00:00 +08:00
27 lines
969 B
Go
27 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;
|