@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
21 lines (20 loc) • 641 B
TypeScript
export interface CreateChild {
email: string;
firstName: string;
lastName: string;
companyName: string;
password: string;
language?: CreateChildLanguageEnum;
}
export declare enum CreateChildLanguageEnum {
Fr = "fr",
Es = "es",
Pt = "pt",
It = "it",
De = "de",
En = "en"
}
export declare function instanceOfCreateChild(value: object): boolean;
export declare function CreateChildFromJSON(json: any): CreateChild;
export declare function CreateChildFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateChild;
export declare function CreateChildToJSON(value?: CreateChild | null): any;