diff --git a/types/index.d.ts b/types/index.d.ts index 7bc223dd..741855a5 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -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 = { + [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 = { + +export type CombinedComponentInstance = Vue & + LooseObject & + Weapp.Component & { data: Data & Props } & Methods; + +export type VantComponentOptions = { data?: Data; props?: Props; field?: boolean; mixins?: Mixins; - relations?: Relations; + relations?: Relations; classes?: ExternalClasses; - methods?: Methods & ThisType; + methods?: Methods & ThisType; // lifetimes - beforeCreate?: () => void; + beforeCreate?: (this: Instance) => void; created?: () => void; mounted?: () => void; destroyed?: () => void; -} +}; diff --git a/types/vue.d.ts b/types/vue.d.ts new file mode 100644 index 00000000..829fc0eb --- /dev/null +++ b/types/vue.d.ts @@ -0,0 +1,3 @@ +export interface Vue { + $emit(name: string, detail?: any): void; +} diff --git a/types/weapp.d.ts b/types/weapp.d.ts index 92c675b8..8d20432a 100644 --- a/types/weapp.d.ts +++ b/types/weapp.d.ts @@ -36,3 +36,7 @@ declare namespace Weapp { detail: any; } } + +export { + Weapp +};