@giro3d/giro3d
Version:
A JS/WebGL framework for 3D geospatial data visualization
17 lines • 629 B
TypeScript
import type { ChartData, ScatterDataPoint } from 'chart.js';
import type GUI from 'lil-gui';
import type { WebGLInfo } from 'three';
import { Chart } from 'chart.js';
import type Instance from '../../core/Instance';
import ChartPanel from './ChartPanel';
declare class FrameDuration extends ChartPanel {
render: typeof WebGLInfo.prototype.render;
data: ChartData<'bar', ScatterDataPoint[], string>;
chart: Chart;
updateStart: number;
renderStart: number;
constructor(parentGui: GUI, instance: Instance);
updateValues(): void;
}
export default FrameDuration;
//# sourceMappingURL=FrameDuration.d.ts.map