style: apply biome formatting

This commit is contained in:
Peter Steinberger
2026-01-01 17:06:47 +00:00
parent 956db9c182
commit 8ea27968d7
7 changed files with 137 additions and 44 deletions

View File

@@ -38,10 +38,13 @@ export type GatewayService = {
stdout: NodeJS.WritableStream;
}) => Promise<void>;
restart: (args: { stdout: NodeJS.WritableStream }) => Promise<void>;
isLoaded: (args: { env: Record<string, string | undefined> }) => Promise<boolean>;
readCommand: (
env: Record<string, string | undefined>,
) => Promise<{ programArguments: string[]; workingDirectory?: string } | null>;
isLoaded: (args: {
env: Record<string, string | undefined>;
}) => Promise<boolean>;
readCommand: (env: Record<string, string | undefined>) => Promise<{
programArguments: string[];
workingDirectory?: string;
} | null>;
};
export function resolveGatewayService(): GatewayService {
@@ -102,5 +105,7 @@ export function resolveGatewayService(): GatewayService {
};
}
throw new Error(`Gateway service install not supported on ${process.platform}`);
throw new Error(
`Gateway service install not supported on ${process.platform}`,
);
}