style: oxfmt fixes (#925) (thanks @grp06)

This commit is contained in:
Peter Steinberger
2026-01-15 03:22:54 +00:00
parent 8f797f213e
commit 5c52dbf661
5 changed files with 11 additions and 11 deletions

View File

@@ -86,7 +86,9 @@ export const listGatewayAgentChannelAliases = (): string[] =>
export type GatewayAgentChannelHint = GatewayMessageChannel | "last";
export const listGatewayAgentChannelValues = (): string[] =>
Array.from(new Set([...listGatewayMessageChannels(), "last", ...listGatewayAgentChannelAliases()]));
Array.from(
new Set([...listGatewayMessageChannels(), "last", ...listGatewayAgentChannelAliases()]),
);
export function isGatewayMessageChannel(value: string): value is GatewayMessageChannel {
return listGatewayMessageChannels().includes(value as GatewayMessageChannel);