From f079e856d193ca75d9b6bde15bd00a51b9b66733 Mon Sep 17 00:00:00 2001 From: Derek Sifford Date: Tue, 8 Oct 2019 16:02:37 -0400 Subject: [PATCH] fix(wordpress__notices): update notice options (#38970) --- types/wordpress__notices/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/wordpress__notices/index.d.ts b/types/wordpress__notices/index.d.ts index de2a3eea19..0101a7c228 100644 --- a/types/wordpress__notices/index.d.ts +++ b/types/wordpress__notices/index.d.ts @@ -58,4 +58,9 @@ export interface Options { * @defaultValue `true` */ speak: boolean; + /** + * The type of notice. + * @defaultValue `'default'` + */ + type: 'default' | 'snackbar'; }