UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

11 lines (10 loc) 551 B
export interface PostContactInfoContacts { success?: Array<string>; failure?: Array<string>; total?: number; processId?: number; } export declare function instanceOfPostContactInfoContacts(value: object): boolean; export declare function PostContactInfoContactsFromJSON(json: any): PostContactInfoContacts; export declare function PostContactInfoContactsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostContactInfoContacts; export declare function PostContactInfoContactsToJSON(value?: PostContactInfoContacts | null): any;