fix: UpdateOptions types omit notMerge

This commit is contained in:
SadWood
2022-07-07 11:07:26 +08:00
committed by GU Yiling
parent 49563d3d52
commit bbac925b03

View File

@ -14,7 +14,7 @@ export type EventTarget = EChartsType | ZRenderType;
type SetOptionType = EChartsType["setOption"];
export type Option = Parameters<SetOptionType>[0];
export type UpdateOptions = Omit<SetOptionOpts, "notMerge">;
export type UpdateOptions = SetOptionOpts;
export type UpdateOptionsInjection =
| UpdateOptions
| null