import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * 指定构成字符串的字符类型。 */ export declare const GetRandomStringType: { readonly Numeric: "numeric"; readonly Lower: "lower"; readonly Upper: "upper"; readonly Alpha: "alpha"; readonly Alphanumeric: "alphanumeric"; readonly Hex: "hex"; }; /** * 指定构成字符串的字符类型。 */ export type GetRandomStringType = ClosedEnum; export declare const GetRandomStringType$zodSchema: z.ZodEnum<{ numeric: "numeric"; lower: "lower"; upper: "upper"; alpha: "alpha"; alphanumeric: "alphanumeric"; hex: "hex"; }>; export type GetRandomStringRequest = { length?: number | undefined; type?: GetRandomStringType | undefined; }; export declare const GetRandomStringRequest$zodSchema: z.ZodType; export type GetRandomStringInternalServerErrorDetails = {}; export declare const GetRandomStringInternalServerErrorDetails$zodSchema: z.ZodType; /** * 服务器内部错误。 */ export type GetRandomStringInternalServerErrorResponseBody = { code?: string | undefined; details?: GetRandomStringInternalServerErrorDetails | undefined; message?: string | undefined; }; export declare const GetRandomStringInternalServerErrorResponseBody$zodSchema: z.ZodType; export type GetRandomStringBadRequestDetails = {}; export declare const GetRandomStringBadRequestDetails$zodSchema: z.ZodType; /** * 无效的请求参数。 */ export type GetRandomStringBadRequestResponseBody = { code?: string | undefined; details?: GetRandomStringBadRequestDetails | undefined; message?: string | undefined; }; export declare const GetRandomStringBadRequestResponseBody$zodSchema: z.ZodType; /** * 生成成功! */ export type GetRandomStringResponseBody = { text?: string | undefined; }; export declare const GetRandomStringResponseBody$zodSchema: z.ZodType; export type GetRandomStringResponse = GetRandomStringResponseBody | GetRandomStringBadRequestResponseBody | GetRandomStringInternalServerErrorResponseBody; export declare const GetRandomStringResponse$zodSchema: z.ZodType; //# sourceMappingURL=getrandomstringop.d.ts.map