10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
|
import * as mindmapDb from './mindmapDb.js';
|
||
|
export declare const diagram: {
|
||
|
db: typeof mindmapDb;
|
||
|
renderer: {
|
||
|
draw: (text: any, id: any, version: any, diagObj: any) => Promise<void>;
|
||
|
};
|
||
|
parser: any;
|
||
|
styles: (options: any) => string;
|
||
|
};
|