import { EnumConstructor } from '../types/index.js'; /** * @description 创建枚举类型 * @param ary 枚举值数组 * @returns 枚举构造器 * * @example * ```ts * const Status = Enum("pending", "success", "error"); * // 或 * const Status = Enum(["pending", "success", "error"]); * ``` */ declare function Enum(ary: T): EnumConstructor; declare function Enum(...values: T[]): EnumConstructor; export { Enum }; //# sourceMappingURL=Enum.d.ts.map