From cd6d46c924c4f4fcf0241207b4b66c61811e456f Mon Sep 17 00:00:00 2001 From: neverland Date: Mon, 3 Dec 2018 20:14:36 +0800 Subject: [PATCH] [bugfix] Notify: type definition (#2210) --- types/notify.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/notify.d.ts b/types/notify.d.ts index 5989a60c4..e7ead0335 100644 --- a/types/notify.d.ts +++ b/types/notify.d.ts @@ -19,6 +19,7 @@ export interface VanNotify extends Vue { export interface Notify { (message: NotifyOptions | NotifyMessage): VanNotify; clear(): void; + install(): void; setDefaultOptions(options: NotifyOptions): void; resetDefaultOptions(): void; }