[bugfix] Notify: type definition (#2210)

This commit is contained in:
neverland 2018-12-03 20:14:36 +08:00 committed by GitHub
parent 39dd775083
commit cd6d46c924
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

1
types/notify.d.ts vendored
View File

@ -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;
}