Merge pull request #5578 from 2lei/2.0

fix promise types error
This commit is contained in:
Aresn 2019-04-14 14:37:45 +08:00 committed by GitHub
commit 72b5eafe4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
types/drawer.d.ts vendored
View file

@ -75,7 +75,7 @@ export declare interface Drawer extends Vue {
/** /**
* Promise * Promise
*/ */
'before-close'?: () => void | PromiseConstructor; 'before-close'?: () => void | Promise<any>;
/** /**
* *
*/ */