Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import { LabelValue } from '@skava/graphql-bindings';
declare class RegisterUserContainer {
static debugName: string;
store: Map<any, any>;
constructor();
setShouldNotify(shouldNotify: boolean): this;
setEmail(email: string): this;
setUserName(userName: string): void;
setPassword(password: string): this;
setTelephone(telephone: number): this;
setFirstName(name: string): this;
setLastName(name: string): this;
setSecurityQuestions(arg: LabelValue): this;
toSerialized(): {
userName: any;
password: any;
telephone: any;
firstName: any;
lastName: any;
};
toJSON(): string;
}
declare const registerUserContainer: RegisterUserContainer;
/**
* @todo convert & export same as generated
*/
export { RegisterUserContainer, registerUserContainer };
export default registerUserContainer;