@wiqotech/nestjs-digiflazz
Version:
NestJS Digiflazz SDK Module
13 lines (12 loc) • 325 B
TypeScript
import { z } from "zod";
export declare const DigiflazzConfigSchema: z.ZodObject<{
username: z.ZodString;
apikey: z.ZodString;
}, "strip", z.ZodTypeAny, {
username: string;
apikey: string;
}, {
username: string;
apikey: string;
}>;
export type DigiflazzConfig = z.infer<typeof DigiflazzConfigSchema>;