@scalar/oas-utils
Version:
Open API spec and Yaml handling utilities
23 lines • 814 B
TypeScript
import { z } from 'zod';
export declare const xScalarSecretVarSchema: z.ZodObject<{
description: z.ZodOptional<z.ZodString>;
example: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
description?: string | undefined;
example?: string | undefined;
}, {
description?: string | undefined;
example?: string | undefined;
}>;
export declare const xScalarSecretsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
description: z.ZodOptional<z.ZodString>;
example: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
description?: string | undefined;
example?: string | undefined;
}, {
description?: string | undefined;
example?: string | undefined;
}>>;
export type XScalarSecrets = z.infer<typeof xScalarSecretsSchema>;
//# sourceMappingURL=x-scalar-secrets.d.ts.map