mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[type] update type definition (#605)
This commit is contained in:
parent
9454e8ce55
commit
690b077ea5
32
types/index.d.ts
vendored
32
types/index.d.ts
vendored
@ -1,23 +1,37 @@
|
||||
import { Vue } from './vue';
|
||||
import { Weapp } from './weapp';
|
||||
|
||||
type LooseObject = {
|
||||
[key: string]: any;
|
||||
};
|
||||
type Mixins = any[];
|
||||
type Relations = object;
|
||||
type Relations<Instance> = {
|
||||
[key: string]: {
|
||||
type: string;
|
||||
linked?: (this: Instance, target?: any) => void;
|
||||
unlinked?: (this: Instance, target?: any) => void;
|
||||
}
|
||||
};
|
||||
type ExternalClasses = string[];
|
||||
|
||||
export interface Vue {
|
||||
$emit(name: string, detail?: any): void;
|
||||
}
|
||||
|
||||
export type VantComponentOptions<Props, Data, Methods> = {
|
||||
|
||||
export type CombinedComponentInstance<Props, Data, Methods> = Vue &
|
||||
LooseObject &
|
||||
Weapp.Component & { data: Data & Props } & Methods;
|
||||
|
||||
export type VantComponentOptions<Props, Data, Methods, Instance> = {
|
||||
data?: Data;
|
||||
props?: Props;
|
||||
field?: boolean;
|
||||
mixins?: Mixins;
|
||||
relations?: Relations;
|
||||
relations?: Relations<Instance>;
|
||||
classes?: ExternalClasses;
|
||||
methods?: Methods & ThisType<Vue & Weapp.Component & { data: Data & Props } & Methods>;
|
||||
methods?: Methods & ThisType<Instance>;
|
||||
|
||||
// lifetimes
|
||||
beforeCreate?: () => void;
|
||||
beforeCreate?: (this: Instance) => void;
|
||||
created?: () => void;
|
||||
mounted?: () => void;
|
||||
destroyed?: () => void;
|
||||
}
|
||||
};
|
||||
|
3
types/vue.d.ts
vendored
Normal file
3
types/vue.d.ts
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
export interface Vue {
|
||||
$emit(name: string, detail?: any): void;
|
||||
}
|
4
types/weapp.d.ts
vendored
4
types/weapp.d.ts
vendored
@ -36,3 +36,7 @@ declare namespace Weapp {
|
||||
detail: any;
|
||||
}
|
||||
}
|
||||
|
||||
export {
|
||||
Weapp
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user