Commit 1667936

Anton Medvedev <anton@medv.io>
2021-05-27 23:27:06
Fix typo
1 parent f9d50ce
Changed files (1)
index.d.ts
@@ -56,7 +56,7 @@ type fs = typeof _fs & {
 }
 type nothrow = (p: ProcessPromise<ProcessOutput>) => ProcessPromise<ProcessOutput>
 type question = (query?: string, options?: QuestionOptions) => Promise<string>
-type sleep =(ms: number) => Promise<void>
+type sleep = (ms: number) => Promise<void>
 
 export const $: $
 export const cd: cd