UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

9 lines (8 loc) 501 B
import type { PostContactInfoContacts } from './PostContactInfoContacts.js'; export interface PostContactInfo { contacts: PostContactInfoContacts; } export declare function instanceOfPostContactInfo(value: object): boolean; export declare function PostContactInfoFromJSON(json: any): PostContactInfo; export declare function PostContactInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostContactInfo; export declare function PostContactInfoToJSON(value?: PostContactInfo | null): any;