import { Weapp } from './weapp'; type RecordToAny = { [K in keyof T]: any }; type RecordToReturn = { [P in keyof T]: T[P] extends (...args: any[]) => any ? ReturnType : T[P] }; export type CombinedComponentInstance< Data, Props, Methods, Computed > = Methods & WechatMiniprogram.Component.TrivialInstance & Weapp.FormField & { data: Data & RecordToReturn & RecordToAny; }; export interface VantComponentOptions { data?: Data; field?: boolean; classes?: string[]; mixins?: string[]; props?: Props & Weapp.PropertyOption; watch?: Weapp.WatchOption; computed?: Computed & Weapp.ComputedOption; relation?: Weapp.RelationOption & { name: string }; relations?: { [componentName: string]: Weapp.RelationOption; }; methods?: Methods & Weapp.MethodOption; // lifetimes beforeCreate?: (this: Instance) => void; created?: (this: Instance) => void; mounted?: (this: Instance) => void; destroyed?: (this: Instance) => void; }