UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

9 lines (8 loc) 480 B
export interface RemoveContactFromList { emails?: Array<string>; all?: boolean; } export declare function instanceOfRemoveContactFromList(value: object): boolean; export declare function RemoveContactFromListFromJSON(json: any): RemoveContactFromList; export declare function RemoveContactFromListFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemoveContactFromList; export declare function RemoveContactFromListToJSON(value?: RemoveContactFromList | null): any;