types(AddressEdit): add setAddressDetail method type (#5352)

This commit is contained in:
neverland
2019-12-22 12:50:03 +08:00
committed by GitHub
parent 84f53d0014
commit a54a77d8c8
4 changed files with 11 additions and 2 deletions

4
types/dialog.d.ts vendored
View File

@@ -1,3 +1,5 @@
import { VanComponent } from './component';
type DialogAction = 'confirm' | 'cancel';
type DialogDone = (close?: boolean) => void;
@@ -32,7 +34,7 @@ export interface Dialog {
install(): void;
setDefaultOptions(options: DialogOptions): void;
resetDefaultOptions(): void;
Component: any;
Component: VanComponent;
}
declare module 'vue/types/vue' {