-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.d.ts
164 lines (133 loc) · 3.77 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import {Buffer} from 'node:buffer';
/**
`unhook()` method which, when called, unhooks from a stream and resolves the Promise.
*/
export type Unhook = () => void;
/**
@param output - String from stream output.
@param unhook - Method which, when called, unhooks from stream.
@returns A Buffer or string to modify the value in the stream.
*/
export type Transform = (
output: string,
unhook: Unhook
) => Buffer | string | void;
/**
@param output - String from stream output.
@param unhook - Method which, when called, unhooks from stream.
@returns A boolean to influence the return value of `.write(…)`.
*/
export type SilentTransform = (
output: string,
unhook: Unhook
) => boolean | void;
export interface Options {
/**
Automatically unhook after the first call.
@default false
*/
readonly once?: boolean;
/**
Suppress stdout/stderr output.
@default true
*/
readonly silent?: boolean;
}
export interface StreamsOptions extends Options {
/**
The writable streams to hook. This can be useful for libraries allowing users to configure a writable stream to write to.
@default [process.stdout, process.stderr]
*/
readonly streams?: readonly NodeJS.WritableStream[];
}
/**
Promise with a `unhook()` method which, when called, resolves the Promise with an empty result.
*/
export interface HookPromise extends Promise<void> {
unhook: Unhook;
}
/**
Hook streams in the `streams` options, or stdout and stderr if none are specified.
@returns A `Promise` with a `unhook()` method which, when called, unhooks both stdout and stderr and resolves the `Promise` with an empty result.
*/
export function hookStd(transform: SilentTransform): HookPromise;
export function hookStd(
options: StreamsOptions & {silent?: false},
transform: Transform
): HookPromise;
export function hookStd(
options: StreamsOptions & {silent?: true},
transform: SilentTransform
): HookPromise;
/**
Hook stdout.
@returns A `Promise` with a `unhook()` method which, when called, unhooks stdout and resolves the `Promise` with an empty result.
@example
```
import assert from 'node:assert';
import {hookStdout} from 'hook-std';
const promise = hookStdout(output => {
promise.unhook();
assert.strictEqual(output.trim(), 'unicorn');
});
console.log('unicorn');
await promise;
```
You can also unhook using the second `transform` method parameter:
@example
```
import assert from 'node:assert';
import {hookStdout} from 'hook-std';
const promise = hookStdout((output, unhook) => {
unhook();
assert.strictEqual(output.trim(), 'unicorn');
});
console.log('unicorn');
await promise;
```
*/
export function hookStdout(transform: SilentTransform): HookPromise;
export function hookStdout(
options: Options & {silent?: false},
transform: Transform
): HookPromise;
export function hookStdout(
options: Options & {silent?: true},
transform: SilentTransform
): HookPromise;
/**
Hook stderr.
@returns A `Promise` with a `unhook()` method which, when called, unhooks stderr and resolves the `Promise` with an empty result.
@example
```
import assert from 'node:assert';
import {hookStderr} from 'hook-std';
const promise = hookStdout(output => {
promise.unhook();
assert.strictEqual(output.trim(), 'unicorn');
});
console.error('unicorn');
await promise;
```
You can also unhook using the second `transform` method parameter:
@example
```
import assert from 'node:assert';
import {hookStderr} from 'hook-std';
const promise = hookStderr((output, unhook) => {
unhook();
assert.strictEqual(output.trim(), 'unicorn');
});
console.error('unicorn');
await promise;
```
*/
export function hookStderr(transform: SilentTransform): HookPromise;
export function hookStderr(
options: Options & {silent?: false},
transform: Transform
): HookPromise;
export function hookStderr(
options: Options & {silent?: true},
transform: SilentTransform
): HookPromise;