import { ChartType } from 'chart.js'; export type ScrollType = 'Horizontal' | 'Vertical'; export interface PluginOptions { enable: boolean; scrollType: ScrollType; } declare module 'chart.js' { interface PluginOptionsByType { scrollBar?: PluginOptions; } }