mirror of
https://github.com/ytliu74/obsidian-pseudocode.git
synced 2026-07-22 07:40:25 +00:00
6 lines
No EOL
311 B
TypeScript
6 lines
No EOL
311 B
TypeScript
declare module 'pseudocode' {
|
|
export class ParseError extends Error { }
|
|
export function render(input: string, baseDomEle?: Element, options?: any): Element;
|
|
export function renderToString(input: string, options?: any): string;
|
|
export function renderElement(elem: Element, options?: any): void;
|
|
} |