zhangwei
4 天以前 ef3906e9669cc75c054ef9bf4ea6336b727a539b
types/index.d.ts
@@ -14,7 +14,8 @@
type ForDataType<T> = {
  [P in T]?: ForDataType<T[P]>;
};
// 申明 数组
declare type EmptyArrayType<T = any> = T[];
type AnyFunction<T> = (...args: any[]) => T;
type PropType<T> = VuePropType<T>;