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;
httpsPort?: number;
myIrcAddresses?: string[];
platformCDNs: string[];
hubAddress: string;
NRS: string[];
platformCDNs?: string[];
hubAddress?: string;
NRS?: string[];
administratorNames?: string[] | string;
autoCreateAccount?: boolean;
skipTutorial?: boolean;

View File

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