forked from mystiq/hydrogen-web
Change type to show that username is optional
This commit is contained in:
parent
550a560f40
commit
a91ba4370d
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ import {registrationStageFromType} from "./registrationStageFromType";
|
||||||
import type {BaseRegistrationStage} from "./stages/BaseRegistrationStage";
|
import type {BaseRegistrationStage} from "./stages/BaseRegistrationStage";
|
||||||
|
|
||||||
export type RegistrationParameters = {
|
export type RegistrationParameters = {
|
||||||
username: string;
|
username: string | null;
|
||||||
password: string;
|
password: string;
|
||||||
initialDeviceDisplayName: string;
|
initialDeviceDisplayName: string;
|
||||||
inhibitLogin: boolean;
|
inhibitLogin: boolean;
|
||||||
|
|
Loading…
Reference in a new issue