state sync

This commit is contained in:
2025-11-23 14:59:17 -08:00
parent 537bdf1ad7
commit 39f4a8d3fc
812 changed files with 373062 additions and 84 deletions

View File

@@ -0,0 +1 @@
export {};

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;

View File

@@ -0,0 +1,2 @@
import type { ExternalDiagramDefinition } from '../../diagram-api/types.js';
export declare const info: ExternalDiagramDefinition;

View File

@@ -0,0 +1,2 @@
import type { DiagramDefinition } from '../../diagram-api/types.js';
export declare const diagram: DiagramDefinition;

View File

@@ -0,0 +1,2 @@
import type { ParserDefinition } from '../../diagram-api/types.js';
export declare const parser: ParserDefinition;

View File

@@ -0,0 +1,4 @@
import type { DrawDefinition } from '../../diagram-api/types.js';
export declare const renderer: {
draw: DrawDefinition;
};

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;
}