@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
10 lines (9 loc) • 477 B
TypeScript
import type { GetContactDetails } from './GetContactDetails.js';
export interface GetContacts {
contacts: Array<GetContactDetails>;
count: number;
}
export declare function instanceOfGetContacts(value: object): boolean;
export declare function GetContactsFromJSON(json: any): GetContacts;
export declare function GetContactsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetContacts;
export declare function GetContactsToJSON(value?: GetContacts | null): any;