[type] update type definition (#605)

This commit is contained in:
neverland 2018-09-19 20:13:40 +08:00 committed by GitHub
parent 9454e8ce55
commit 690b077ea5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 9 deletions

32
types/index.d.ts vendored
View File

@ -1,23 +1,37 @@
import { Vue } from './vue';
import { Weapp } from './weapp';
type LooseObject = {
[key: string]: any;
};
type Mixins = any[];
type Relations = object;
type Relations<Instance> = {
[key: string]: {
type: string;
linked?: (this: Instance, target?: any) => void;
unlinked?: (this: Instance, target?: any) => void;
}
};
type ExternalClasses = string[];
export interface Vue {
$emit(name: string, detail?: any): void;
}
export type VantComponentOptions<Props, Data, Methods> = {
export type CombinedComponentInstance<Props, Data, Methods> = Vue &
LooseObject &
Weapp.Component & { data: Data & Props } & Methods;
export type VantComponentOptions<Props, Data, Methods, Instance> = {
data?: Data;
props?: Props;
field?: boolean;
mixins?: Mixins;
relations?: Relations;
relations?: Relations<Instance>;
classes?: ExternalClasses;
methods?: Methods & ThisType<Vue & Weapp.Component & { data: Data & Props } & Methods>;
methods?: Methods & ThisType<Instance>;
// lifetimes
beforeCreate?: () => void;
beforeCreate?: (this: Instance) => void;
created?: () => void;
mounted?: () => void;
destroyed?: () => void;
}
};

3
types/vue.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
export interface Vue {
$emit(name: string, detail?: any): void;
}

4
types/weapp.d.ts vendored
View File

@ -36,3 +36,7 @@ declare namespace Weapp {
detail: any;
}
}
export {
Weapp
};