4 lines
240 B
TypeScript
4 lines
240 B
TypeScript
import * as z from 'zod';
|
|
export declare const CommunicationChannelSchema: z.ZodEnum<["sms", "voice"]>;
|
|
export type CommunicationChannel = z.infer<typeof CommunicationChannelSchema>;
|
|
//# sourceMappingURL=CommunicationChannel.schema.d.ts.map
|