Indicate that SubTitle is a plugin in TS types (#9386)

* Indicate that `SubTitle` is a plugin in TS types

* Export subtitle plugin options
This commit is contained in:
Evert Timberg 2021-07-10 09:26:37 -04:00 committed by GitHub
parent 655c635191
commit 6ab2e8cdcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2275,6 +2275,7 @@ export interface LegendOptions<TType extends ChartType> {
};
}
export const SubTitle: Plugin;
export const Title: Plugin;
export interface TitleOptions {
@ -2685,6 +2686,7 @@ export interface PluginOptionsByType<TType extends ChartType> {
decimation: DecimationOptions;
filler: FillerOptions;
legend: LegendOptions<TType>;
subtitle: TitleOptions;
title: TitleOptions;
tooltip: TooltipOptions<TType>;
}