mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
34 lines
841 B
TypeScript
34 lines
841 B
TypeScript
import { Weapp } from './weapp';
|
|
|
|
type RecordToAny<T> = { [K in keyof T]: any };
|
|
|
|
export type CombinedComponentInstance<
|
|
Data,
|
|
Props,
|
|
Methods
|
|
> = Methods &
|
|
WechatMiniprogram.Component.TrivialInstance &
|
|
Weapp.FormField &
|
|
{
|
|
data: Data & RecordToAny<Props>;
|
|
};
|
|
|
|
export interface VantComponentOptions<Data, Props, Methods, Instance> {
|
|
data?: Data;
|
|
field?: boolean;
|
|
classes?: string[];
|
|
mixins?: string[];
|
|
props?: Props & Weapp.PropertyOption;
|
|
relation?: Weapp.RelationOption<Instance> & { name: string };
|
|
relations?: {
|
|
[componentName: string]: Weapp.RelationOption<Instance>;
|
|
};
|
|
methods?: Methods & Weapp.MethodOption<Instance>;
|
|
|
|
// lifetimes
|
|
beforeCreate?: (this: Instance) => void;
|
|
created?: (this: Instance) => void;
|
|
mounted?: (this: Instance) => void;
|
|
destroyed?: (this: Instance) => void;
|
|
}
|