UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

11 lines (10 loc) 426 B
export interface GetClient { email: string; firstName: string; lastName: string; companyName: string; } export declare function instanceOfGetClient(value: object): boolean; export declare function GetClientFromJSON(json: any): GetClient; export declare function GetClientFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClient; export declare function GetClientToJSON(value?: GetClient | null): any;