NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/data-set/lib/helper.d.ts

16 lines
527 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
export declare type RowData = Record<string, any>;
/**
*
* @param options -
* @param defaults -
*/
export declare function mergeOptions<T, U>(options: T, defaults: U): T & U;
export declare function range(arr: number[]): [number, number];
export declare function checkArray<T>(target: T[]): target is T[];
/**
*
* @param test -
* @param errorMessage -
*/
export declare function assert(test: any, errorMessage: string): void;