@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
8 lines (7 loc) • 398 B
TypeScript
export interface SendTestEmail {
emailTo?: Array<string>;
}
export declare function instanceOfSendTestEmail(value: object): boolean;
export declare function SendTestEmailFromJSON(json: any): SendTestEmail;
export declare function SendTestEmailFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendTestEmail;
export declare function SendTestEmailToJSON(value?: SendTestEmail | null): any;