chore: fix formatting

This commit is contained in:
spiceoogway 2026-01-30 10:54:16 -05:00
parent a9be84ad24
commit 4be5c58c94

View File

@ -66,9 +66,7 @@ export type GatewayClientInfo = {
instanceId?: string; instanceId?: string;
}; };
const GATEWAY_CLIENT_ID_SET = new Set<GatewayClientId>( const GATEWAY_CLIENT_ID_SET = new Set<GatewayClientId>(Object.values(ALL_GATEWAY_CLIENT_IDS));
Object.values(ALL_GATEWAY_CLIENT_IDS),
);
const GATEWAY_CLIENT_MODE_SET = new Set<GatewayClientMode>(Object.values(GATEWAY_CLIENT_MODES)); const GATEWAY_CLIENT_MODE_SET = new Set<GatewayClientMode>(Object.values(GATEWAY_CLIENT_MODES));
export function normalizeGatewayClientId(raw?: string | null): GatewayClientId | undefined { export function normalizeGatewayClientId(raw?: string | null): GatewayClientId | undefined {