///
interface ComponentInstance {
triggerEvent: never;
$emit(name: string, detail?: any): void;
}
type Mixins = any[];
type ExternalClasses = string[];
type LooseObject = {
[key: string]: any;
};
type Relation = {
name?: string;
type: string;
linked?: (this: Instance, target?: Weapp.Component) => void;
unlinked?: (this: Instance, target?: Weapp.Component) => void;
};
type Relations = {
[key: string]: Relation;
};
type RecordToAny = { [K in keyof T]: any };
type RecordToReturn = {
[P in keyof T]: T[P] extends (...args: any[]) => any ? ReturnType : T[P]
};
type CombinedComponentInstance<
Data,
Props,
Watch,
Methods,
Computed
> = Methods &
LooseObject &
Weapp.Component &
Weapp.FormField &
ComponentInstance & {
data: Data & LooseObject & RecordToAny & RecordToReturn;
};
type VantComponentOptions<
Data,
Props,
Watch,
Methods,
Computed,
Instance
> = {
data?: Data;
field?: boolean;
mixins?: Mixins;
props?: Props & ThisType;
watch?: Watch & ThisType;
computed?: Computed & ThisType;
relation?: Relation;
relations?: Relations;
classes?: ExternalClasses;
methods?: Methods & ThisType;
// lifetimes
beforeCreate?: (this: Instance) => void;
created?: (this: Instance) => void;
mounted?: (this: Instance) => void;
destroyed?: (this: Instance) => void;
};