diff --git a/packages/plots/src/components/tiny/index.ts b/packages/plots/src/components/tiny/index.ts index 083c0962f..bdebd4ab7 100644 --- a/packages/plots/src/components/tiny/index.ts +++ b/packages/plots/src/components/tiny/index.ts @@ -10,6 +10,4 @@ export type { TinyColumnConfig } from './column'; export type { TinyProgressConfig } from './progress'; export type { TinyRingConfig } from './ring'; -type TinyOptions = Record; - -export const Tiny: TinyOptions = { Line, Area, Column, Progress, Ring }; +export const Tiny = { Line, Area, Column, Progress, Ring } as const;