UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

9 lines (8 loc) 388 B
export type ShikiService = { codeToHtml(code: string, { lang, theme, }: { lang: 'sql' | 'typescript' | 'graphql' | 'csharp' | 'java' | 'kotlin' | 'scala'; theme?: 'dark' | 'light'; }): Promise<string>; }; export declare function setGetShikiServiceCallback(callback: () => ShikiService | null): void; export declare function getShikiService(): ShikiService | null;