UNPKG

@antv/x6

Version:

JavaScript diagramming library that uses SVG and HTML for rendering

9 lines (8 loc) 338 B
export type Definition<T> = (from: T, to: T) => (time: number) => T; export declare const number: Definition<number>; export declare const object: Definition<{ [key: string]: number; }>; export declare const unit: Definition<string>; export declare const color: Definition<string>; export declare const transform: Definition<string>;