Skip to content

Commit

Permalink
fix: change interface name
Browse files Browse the repository at this point in the history
  • Loading branch information
thabarbados committed Mar 10, 2022
1 parent 84f0995 commit 67b2c57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.ts
Expand Up @@ -51,7 +51,7 @@ export interface IChartProps<
plugins: PluginOptionsByType<TType>
}

export interface TypedChartComponentData<
export interface IChartComponentData<
TType extends ChartType,
TData = DefaultDataPoint<TType>,
TLabel = unknown
Expand Down Expand Up @@ -81,7 +81,7 @@ export type TypedChartComponent<
TLabel = unknown
> = DefineComponent<
IChartProps<TType, TData, TLabel>,
TypedChartComponentData<TType, TData, TLabel>,
IChartComponentData<TType, TData, TLabel>,
unknown,
ComputedOptions,
MethodOptions,
Expand Down

0 comments on commit 67b2c57

Please sign in to comment.