1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00
Oinktube/node_modules/chart.js/dist/platform/platform.basic.d.ts
2023-02-17 15:04:26 -03:00

10 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";