UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

8 lines (7 loc) 273 B
import { Clock } from './clock'; export type EngineContext = { toWidth: (text: string) => number; clock: Clock; }; export type InjectEngineContext = Omit<EngineContext, 'clock'>; export declare function createEngineContext(ctx: InjectEngineContext): EngineContext;