ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
16 lines (15 loc) • 451 B
TypeScript
import { gauge } from './gauge';
import { priceVolume } from './priceVolumePreset';
import { sparkline } from './sparkline';
export declare const PRESETS: {
'price-volume': typeof priceVolume;
gauge: typeof gauge;
sparkline: typeof sparkline;
};
export declare const PRESET_DATA_PROCESSORS: Partial<Record<keyof typeof PRESETS, (data?: any[]) => {
data?: any[];
series?: {
xKey: string;
yKey: string;
}[];
}>>;