vant-weapp/types/index.d.ts
2018-09-26 19:22:56 +08:00

51 lines
1.3 KiB
TypeScript

/// <reference path="./weapp.d.ts" />
import { ComponentInstance } from './instance';
type Mixins = any[];
type ExternalClasses = string[];
type LooseObject = {
[key: string]: any;
};
type Relations<Instance> = {
[key: string]: {
type: string;
linked?: (this: Instance, target?: any) => void;
unlinked?: (this: Instance, target?: any) => void;
};
};
type RecordToAny<T> = { [K in keyof T]: any };
type RecordToReturn<T> = {
[P in keyof T]: T[P] extends (...args: any[]) => any ? ReturnType<T[P]> : T[P]
}
export type CombinedComponentInstance<
Data,
Props,
Watch,
Methods,
Computed
> = Methods &
LooseObject &
Weapp.Component &
ComponentInstance & {
data: Data & RecordToAny<Props> & RecordToReturn<Computed>;
};
export type VantComponentOptions<Data, Props, Watch, Methods, Computed, Instance> = {
data?: Data;
field?: boolean;
mixins?: Mixins;
props?: Props & ThisType<Instance>;
watch?: Watch & ThisType<Instance>;
computed?: Computed & ThisType<Instance>;
relations?: Relations<Instance>;
classes?: ExternalClasses;
methods?: Methods & ThisType<Instance>;
// lifetimes
beforeCreate?: (this: Instance) => void;
created?: (this: Instance) => void;
mounted?: (this: Instance) => void;
destroyed?: (this: Instance) => void;
};