diff options
Diffstat (limited to 'gjs/src/process.ts')
-rw-r--r-- | gjs/src/process.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gjs/src/process.ts b/gjs/src/process.ts index 59ab328..f7ff7b0 100644 --- a/gjs/src/process.ts +++ b/gjs/src/process.ts @@ -1,9 +1,9 @@ import { Astal } from "./imports.js" type Args<Out = void, Err = void> = { - cmd: string | string[], - out?: (stdout: string) => Out, - err?: (stderr: string) => Err, + cmd: string | string[] + out?: (stdout: string) => Out + err?: (stderr: string) => Err } function args<O, E>(argsOrCmd: Args | string | string[], onOut: O, onErr: E) { |