/** ## `EmptyObject` : 空对象 @category Gymnastics */ export type EmptyObject = Record; /** ## `Constructor` : `class`类型 @category Gymnastics */ export type Constructor = any[]> = new (...args: A) => T; /** ## `UnionInclude` : 联合包含类型 @description 联合类型`T`中必须包含`I`类型,否则返回`never`类型 @category Gymnastics */ export type UnionInclude = T extends I ? T : never; //# sourceMappingURL=object.d.ts.map