-
Notifications
You must be signed in to change notification settings - Fork 1
/
globals.d.ts
40 lines (38 loc) · 937 Bytes
/
globals.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// Copyright 2022 Joona Piirainen
// MIT License
//
import {
$Internal,
askInternal,
cdInternal,
chooseInternal,
ColorsInternal,
fsInternal,
noThrowInternal,
osInternal,
ProcessOutput as ProcessOutputInternal,
quietInternal,
retryInternal,
rmrfInternal,
sanitizeInternal,
sleepInternal,
startSpinnerInternal,
} from "./index.ts";
declare global {
const ProcessOutput: ProcessOutputInternal;
const $: $Internal;
const cd: typeof cdInternal;
const ask: typeof askInternal;
const choose: typeof chooseInternal;
const fs: typeof fsInternal;
const os: typeof osInternal;
const rmrf: typeof rmrfInternal;
const noThrow: typeof noThrowInternal;
const Colors: typeof ColorsInternal;
const sleep: typeof sleepInternal;
const quiet: typeof quietInternal;
const sanitize: typeof sanitizeInternal;
const retry: typeof retryInternal;
const startSpinner: typeof startSpinnerInternal;
}