mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-30 12:31:52 +02:00
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
|
import * as mindmapDb from './mindmapDb';
|
||
|
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;
|
||
|
};
|