@mintlify/validation
Version:
Validates mint.json files
16 lines (15 loc) • 391 B
TypeScript
import { z } from 'zod';
export declare const discordOAuthCookieSchema: z.ZodObject<{
state: z.ZodString;
subdomain: z.ZodString;
org: z.ZodString;
}, "strict", z.ZodTypeAny, {
subdomain: string;
state: string;
org: string;
}, {
subdomain: string;
state: string;
org: string;
}>;
export type DiscordOAuthCookie = z.infer<typeof discordOAuthCookieSchema>;