From 5e8b99198ecec60193257b276456fd5522b90e16 Mon Sep 17 00:00:00 2001 From: Tanner McCleerey Date: Thu, 12 Dec 2024 10:24:29 -0500 Subject: [PATCH] #958 Add doughnutLabel type --- types/options.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/options.d.ts b/types/options.d.ts index 0f0886cab..86e31ca7e 100644 --- a/types/options.d.ts +++ b/types/options.d.ts @@ -12,6 +12,7 @@ export interface AnnotationTypeRegistry { line: LineAnnotationOptions point: PointAnnotationOptions polygon: PolygonAnnotationOptions + doughnutLabel: DoughnutLabelAnnotationOptions } export type AnnotationType = keyof AnnotationTypeRegistry;