First commit.

Signed-off-by: Chen Xiao <abigwc@gmail.com>
This commit is contained in:
Chen Xiao
2026-05-08 14:43:16 +08:00
commit 0b64e2de94
10989 changed files with 2253791 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export {};
+4
View File
@@ -0,0 +1,4 @@
import type { InfoFields, InfoDB } from './infoTypes.js';
export declare const DEFAULT_INFO_DB: InfoFields;
export declare const getVersion: () => string;
export declare const db: InfoDB;
+2
View File
@@ -0,0 +1,2 @@
import type { ExternalDiagramDefinition } from '../../diagram-api/types.js';
export declare const info: ExternalDiagramDefinition;
+2
View File
@@ -0,0 +1,2 @@
import type { DiagramDefinition } from '../../diagram-api/types.js';
export declare const diagram: DiagramDefinition;
+2
View File
@@ -0,0 +1,2 @@
import type { ParserDefinition } from '../../diagram-api/types.js';
export declare const parser: ParserDefinition;
+4
View File
@@ -0,0 +1,4 @@
import type { DrawDefinition } from '../../diagram-api/types.js';
export declare const renderer: {
draw: DrawDefinition;
};
+7
View File
@@ -0,0 +1,7 @@
import type { DiagramDB } from '../../diagram-api/types.js';
export interface InfoFields {
version: string;
}
export interface InfoDB extends DiagramDB {
getVersion: () => string;
}