-
zhangwei
3 天以前 7a8f1cb7741436c43fc5859707da5041d6648953
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>;