mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
375 B
11 lines
375 B
/**
|
|
* 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";
|