/// import { Vue } from './vue'; type Mixins = any[]; type ExternalClasses = string[]; type LooseObject = { [key: string]: any; }; type Relations = { [key: string]: { type: string; linked?: (this: Instance, target?: any) => void; unlinked?: (this: Instance, target?: any) => void; } }; type RecordProps = { [K in keyof T]: any } export type CombinedComponentInstance = Vue & LooseObject & Weapp.Component & { data: Data & RecordProps } & Methods; export type VantComponentOptions = { data?: Data; props?: Props; field?: boolean; mixins?: Mixins; relations?: Relations; classes?: ExternalClasses; methods?: Methods & ThisType; // lifetimes beforeCreate?: (this: Instance) => void; created?: () => void; mounted?: () => void; destroyed?: () => void; };