Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / core / auth / user / container.register.d.ts
Size: Mime:
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;