g-ui-web
Version:
13 lines (12 loc) • 403 B
TypeScript
interface PieProps {
type: string;
size: string;
isMarkLine: boolean;
title: string;
unit: string;
}
declare const getPieOptions: (options?: object, props?: PieProps) => {};
declare const changePieSeries: (options?: any, props?: PieProps, dataIndex?: number, savedLevelIndexes?: number[]) => {
[x: string]: globalThis.Ref<any, any>;
};
export { getPieOptions, changePieSeries };