@pelag/nts
Version:
Creation and support of the multilingual project Next.js
22 lines • 549 B
TypeScript
import { z } from 'zod';
export declare const ConfigSchema: z.ZodObject<{
localesPath: z.ZodEffects<z.ZodString, string, string>;
projectId: z.ZodString;
}, "strip", z.ZodTypeAny, {
localesPath: string;
projectId: string;
}, {
localesPath: string;
projectId: string;
}>;
export declare const AuthSchema: z.ZodObject<{
login: z.ZodString;
password: z.ZodString;
}, "strip", z.ZodTypeAny, {
login: string;
password: string;
}, {
login: string;
password: string;
}>;
//# sourceMappingURL=schemes.d.ts.map