This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/chart.js/dist/platform/platform.basic.d.ts
2024-09-18 13:34:19 -03:00

11 lines
375 B
TypeScript

/**
* Platform class for charts without access to the DOM or to many element properties
* This platform is used by default for any chart passed an OffscreenCanvas.
* @extends BasePlatform
*/
export default class BasicPlatform extends BasePlatform {
acquireContext(item: any): any;
updateConfig(config: any): void;
}
import BasePlatform from "./platform.base.js";