UNPKG

183 BTypeScriptView Raw
1export declare type JSONEmailFormat = {
2 name: "email";
3 variant: "rfc5321" | "rfc5322";
4};
5export declare function inferEmail(value: string): JSONEmailFormat | undefined;