fix: typings not matching reality

This commit is contained in:
Sainan 2025-02-21 08:29:42 +01:00
parent 78548a2ebe
commit 4d7b3b543b
2 changed files with 6 additions and 6 deletions

View File

@ -33,9 +33,9 @@ interface IConfig {
httpPort?: number; httpPort?: number;
httpsPort?: number; httpsPort?: number;
myIrcAddresses?: string[]; myIrcAddresses?: string[];
platformCDNs: string[]; platformCDNs?: string[];
hubAddress: string; hubAddress?: string;
NRS: string[]; NRS?: string[];
administratorNames?: string[] | string; administratorNames?: string[] | string;
autoCreateAccount?: boolean; autoCreateAccount?: boolean;
skipTutorial?: boolean; skipTutorial?: boolean;

View File

@ -39,11 +39,11 @@ export interface ILoginResponse extends IAccountAndLoginResponseCommons {
Groups: IGroup[]; Groups: IGroup[];
BuildLabel: string; BuildLabel: string;
MatchmakingBuildId: string; MatchmakingBuildId: string;
platformCDNs: string[]; platformCDNs?: string[];
NRS: string[]; NRS?: string[];
DTLS: number; DTLS: number;
IRC: string[]; IRC: string[];
HUB: string; HUB?: string;
} }
export interface IGroup { export interface IGroup {