1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-07 09:21:12 +08:00
2022-05-23 14:56:24 +08:00

34 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export declare const mathRenderAdapter: {
getCode: (mathElement: Element) => string;
getElements: (element: HTMLElement) => NodeListOf<Element>;
};
export declare const mermaidRenderAdapter: {
/** 不仅要返回code并且需要将 code 设置为 el 的 innerHTML */
getCode: (el: Element) => string;
getElements: (element: HTMLElement) => NodeListOf<Element>;
};
export declare const mindmapRenderAdapter: {
getCode: (el: Element) => string;
getElements: (el: HTMLElement | Document) => NodeListOf<Element>;
};
export declare const chartRenderAdapter: {
getCode: (el: HTMLElement) => string;
getElements: (el: HTMLElement | Document) => NodeListOf<Element>;
};
export declare const abcRenderAdapter: {
getCode: (el: Element) => string;
getElements: (el: HTMLElement | Document) => NodeListOf<Element>;
};
export declare const graphvizRenderAdapter: {
getCode: (el: Element) => string;
getElements: (el: HTMLElement | Document) => NodeListOf<Element>;
};
export declare const flowchartRenderAdapter: {
getCode: (el: Element) => string;
getElements: (el: HTMLElement | Document) => NodeListOf<Element>;
};
export declare const plantumlRenderAdapter: {
getCode: (el: Element) => string;
getElements: (el: HTMLElement | Document) => NodeListOf<Element>;
};