zhangwei
2025-08-28 06e4c8c1bad514992186d94a65c0dc6250e34716
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>;