mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-24 09:06:51 +01:00
* enable esnext and fix all lint errors * Review update * Missed some * Some cleanup still * Remove leftover eslint disable
12 lines
349 B
JavaScript
12 lines
349 B
JavaScript
import BasePlatform from './platform.base';
|
|
import BasicPlatform from './platform.basic';
|
|
import DomPlatform from './platform.dom';
|
|
|
|
export {BasicPlatform, DomPlatform, BasePlatform};
|
|
|
|
/**
|
|
* @namespace Chart.platforms
|
|
* @see https://chartjs.gitbooks.io/proposals/content/Platform.html
|
|
*/
|
|
export default {BasicPlatform, DomPlatform, BasePlatform};
|