Skip to content

Commit

Permalink
Correctly extend ExtendedPlugin interface (#9124)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrimmer committed May 19, 2021
1 parent 8c5d6be commit cffce1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.esm.d.ts
Expand Up @@ -742,7 +742,7 @@ export const layouts: {
update(chart: Chart, width: number, height: number): void;
};

export interface Plugin<TType extends ChartType = ChartType, O = AnyObject> extends ExtendedPlugin<TType> {
export interface Plugin<TType extends ChartType = ChartType, O = AnyObject> extends ExtendedPlugin<TType, O> {
id: string;

/**
Expand Down

0 comments on commit cffce1b

Please sign in to comment.