UNPKG

@antv/t8

Version:

T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative T8 markdown syntax that can be used to describe the content of data interpretation reports.

8 lines 260 B
/** * Type definitions for the simple D3-like utility library */ export type Domain = [number, number]; export type Range = [number, number]; export type Scale = (n: number) => number; export type Point = [number, number]; //# sourceMappingURL=types.d.ts.map