mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-30 16:41:54 +02:00
9 lines
262 B
TypeScript
9 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;
|
|
};
|