You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
228 B

import type { Data } from './types';
/**
* 获得数据的最值
*/
export declare function getRange(data: Data): [number, number];
/**
* 数据转换为堆叠数据
*/
export declare function getStackedData(_: Data): Data;