From 6ab2e8cdcd38dd09e94975c9f436d6db2abc941a Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Sat, 10 Jul 2021 09:26:37 -0400 Subject: [PATCH] Indicate that `SubTitle` is a plugin in TS types (#9386) * Indicate that `SubTitle` is a plugin in TS types * Export subtitle plugin options --- types/index.esm.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/index.esm.d.ts b/types/index.esm.d.ts index 2a0c2bd8f64..17c9c02821a 100644 --- a/types/index.esm.d.ts +++ b/types/index.esm.d.ts @@ -2275,6 +2275,7 @@ export interface LegendOptions { }; } +export const SubTitle: Plugin; export const Title: Plugin; export interface TitleOptions { @@ -2685,6 +2686,7 @@ export interface PluginOptionsByType { decimation: DecimationOptions; filler: FillerOptions; legend: LegendOptions; + subtitle: TitleOptions; title: TitleOptions; tooltip: TooltipOptions; }