tstyche 3.0.0-beta.1 → 3.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/build/index.cjs +2 -0
- package/build/index.d.cts +19 -49
- package/build/index.d.ts +19 -49
- package/build/index.js +1 -1
- package/build/tstyche.d.ts +69 -52
- package/build/tstyche.js +426 -318
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -39,8 +39,8 @@ To organize, debug and plan tests TSTyche has:
|
|
|
39
39
|
The assertions can be used to write type tests (like in the above example) or mixed in your functional tests:
|
|
40
40
|
|
|
41
41
|
```ts
|
|
42
|
-
import assert from "node:assert
|
|
43
|
-
import
|
|
42
|
+
import assert from "node:assert";
|
|
43
|
+
import test from "node:test";
|
|
44
44
|
import * as tstyche from "tstyche";
|
|
45
45
|
|
|
46
46
|
function secondItem<T>(target: Array<T>): T | undefined {
|
|
@@ -56,7 +56,7 @@ test("handles numbers", () => {
|
|
|
56
56
|
|
|
57
57
|
Here is the list of all matchers:
|
|
58
58
|
|
|
59
|
-
- `.toBe()`, `.toBeAssignableTo()`, `.toBeAssignableWith()
|
|
59
|
+
- `.toBe()`, `.toBeAssignableTo()`, `.toBeAssignableWith()` compare types or types of expression,
|
|
60
60
|
- `.toAcceptProps()` checks types of JSX component's props,
|
|
61
61
|
- `.toHaveProperty()` looks up keys on an object type,
|
|
62
62
|
- `.toRaiseError()` captures the type error message or code,
|
package/build/index.cjs
CHANGED
package/build/index.d.cts
CHANGED
|
@@ -97,28 +97,6 @@ interface Matchers {
|
|
|
97
97
|
*/
|
|
98
98
|
(target: unknown): void;
|
|
99
99
|
};
|
|
100
|
-
/**
|
|
101
|
-
* Checks if the source type is assignable with the target type.
|
|
102
|
-
*
|
|
103
|
-
* @deprecated Use `.toBeAssignableWith()` or `.toBeAssignableTo()` instead. This matcher will be removed in TSTyche 3.
|
|
104
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
105
|
-
*/
|
|
106
|
-
toBeAssignable: {
|
|
107
|
-
/**
|
|
108
|
-
* Checks if the source type is assignable with the target type.
|
|
109
|
-
*
|
|
110
|
-
* @deprecated Use `.toBeAssignableWith()` or `.toBeAssignableTo()` instead. This matcher will be removed in TSTyche 3.
|
|
111
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
112
|
-
*/
|
|
113
|
-
<Target>(): void;
|
|
114
|
-
/**
|
|
115
|
-
* Checks if the source type is assignable with type of the target expression.
|
|
116
|
-
*
|
|
117
|
-
* @deprecated Use `.toBeAssignableWith()` or `.toBeAssignableTo()` instead. This matcher will be removed in TSTyche 3.
|
|
118
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
119
|
-
*/
|
|
120
|
-
(target: unknown): void;
|
|
121
|
-
};
|
|
122
100
|
/**
|
|
123
101
|
* Checks if the source type is assignable to the target type.
|
|
124
102
|
*/
|
|
@@ -145,42 +123,26 @@ interface Matchers {
|
|
|
145
123
|
*/
|
|
146
124
|
(target: unknown): void;
|
|
147
125
|
};
|
|
148
|
-
/**
|
|
149
|
-
* Checks if the source type is identical to the target type.
|
|
150
|
-
*
|
|
151
|
-
* @deprecated Use `.toBe()` instead. This matcher will be removed in TSTyche 3.
|
|
152
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
153
|
-
*/
|
|
154
|
-
toEqual: {
|
|
155
|
-
/**
|
|
156
|
-
* Checks if the source type is identical to the target type.
|
|
157
|
-
*
|
|
158
|
-
* @deprecated Use `.toBe()` instead. This matcher will be removed in TSTyche 3.
|
|
159
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
160
|
-
*/
|
|
161
|
-
<Target>(): void;
|
|
162
|
-
/**
|
|
163
|
-
* Checks if the source type is identical to type of the target expression.
|
|
164
|
-
*
|
|
165
|
-
* @deprecated This matcher will be removed in TSTyche 3.
|
|
166
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
167
|
-
*/
|
|
168
|
-
(target: unknown): void;
|
|
169
|
-
};
|
|
170
126
|
/**
|
|
171
127
|
* Checks if a property key exists on the source type.
|
|
172
128
|
*/
|
|
173
129
|
toHaveProperty: (key: string | number | symbol) => void;
|
|
174
130
|
/**
|
|
175
131
|
* Checks if the source type matches the target type.
|
|
132
|
+
*
|
|
133
|
+
* @deprecated This matcher will be removed in TSTyche 4. To learn more, visit https://tstyche.org/release-notes/tstyche-3.
|
|
176
134
|
*/
|
|
177
135
|
toMatch: {
|
|
178
136
|
/**
|
|
179
137
|
* Checks if the source type matches the target type.
|
|
138
|
+
*
|
|
139
|
+
* @deprecated This matcher will be removed in TSTyche 4. To learn more, visit https://tstyche.org/release-notes/tstyche-3.
|
|
180
140
|
*/
|
|
181
141
|
<Target>(): void;
|
|
182
142
|
/**
|
|
183
143
|
* Checks if the source type matches type of the target expression.
|
|
144
|
+
*
|
|
145
|
+
* @deprecated This matcher will be removed in TSTyche 4. To learn more, visit https://tstyche.org/release-notes/tstyche-3.
|
|
184
146
|
*/
|
|
185
147
|
(target: unknown): void;
|
|
186
148
|
};
|
|
@@ -340,6 +302,18 @@ interface Expect {
|
|
|
340
302
|
};
|
|
341
303
|
};
|
|
342
304
|
}
|
|
305
|
+
/**
|
|
306
|
+
* Builds an assertion.
|
|
307
|
+
*/
|
|
308
|
+
declare const expect: Expect;
|
|
309
|
+
/**
|
|
310
|
+
* Reshapes type of the given object by removing the specified keys.
|
|
311
|
+
*/
|
|
312
|
+
declare function omit<T, K extends PropertyKey>(object: T, ...keys: [K, ...Array<K>]): Omit<T, K>;
|
|
313
|
+
/**
|
|
314
|
+
* Reshapes type of the given object by keeping only the specified keys.
|
|
315
|
+
*/
|
|
316
|
+
declare function pick<T, K extends keyof T>(object: T, ...keys: [K, ...Array<K>]): Pick<T, K>;
|
|
343
317
|
/**
|
|
344
318
|
* Defines a test group.
|
|
345
319
|
*/
|
|
@@ -352,9 +326,5 @@ declare const test: Test;
|
|
|
352
326
|
* Defines a single test.
|
|
353
327
|
*/
|
|
354
328
|
declare const it: Test;
|
|
355
|
-
/**
|
|
356
|
-
* Builds an assertion.
|
|
357
|
-
*/
|
|
358
|
-
declare const expect: Expect;
|
|
359
329
|
|
|
360
|
-
export { describe, expect, it, test };
|
|
330
|
+
export { describe, expect, it, omit, pick, test };
|
package/build/index.d.ts
CHANGED
|
@@ -97,28 +97,6 @@ interface Matchers {
|
|
|
97
97
|
*/
|
|
98
98
|
(target: unknown): void;
|
|
99
99
|
};
|
|
100
|
-
/**
|
|
101
|
-
* Checks if the source type is assignable with the target type.
|
|
102
|
-
*
|
|
103
|
-
* @deprecated Use `.toBeAssignableWith()` or `.toBeAssignableTo()` instead. This matcher will be removed in TSTyche 3.
|
|
104
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
105
|
-
*/
|
|
106
|
-
toBeAssignable: {
|
|
107
|
-
/**
|
|
108
|
-
* Checks if the source type is assignable with the target type.
|
|
109
|
-
*
|
|
110
|
-
* @deprecated Use `.toBeAssignableWith()` or `.toBeAssignableTo()` instead. This matcher will be removed in TSTyche 3.
|
|
111
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
112
|
-
*/
|
|
113
|
-
<Target>(): void;
|
|
114
|
-
/**
|
|
115
|
-
* Checks if the source type is assignable with type of the target expression.
|
|
116
|
-
*
|
|
117
|
-
* @deprecated Use `.toBeAssignableWith()` or `.toBeAssignableTo()` instead. This matcher will be removed in TSTyche 3.
|
|
118
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
119
|
-
*/
|
|
120
|
-
(target: unknown): void;
|
|
121
|
-
};
|
|
122
100
|
/**
|
|
123
101
|
* Checks if the source type is assignable to the target type.
|
|
124
102
|
*/
|
|
@@ -145,42 +123,26 @@ interface Matchers {
|
|
|
145
123
|
*/
|
|
146
124
|
(target: unknown): void;
|
|
147
125
|
};
|
|
148
|
-
/**
|
|
149
|
-
* Checks if the source type is identical to the target type.
|
|
150
|
-
*
|
|
151
|
-
* @deprecated Use `.toBe()` instead. This matcher will be removed in TSTyche 3.
|
|
152
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
153
|
-
*/
|
|
154
|
-
toEqual: {
|
|
155
|
-
/**
|
|
156
|
-
* Checks if the source type is identical to the target type.
|
|
157
|
-
*
|
|
158
|
-
* @deprecated Use `.toBe()` instead. This matcher will be removed in TSTyche 3.
|
|
159
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
160
|
-
*/
|
|
161
|
-
<Target>(): void;
|
|
162
|
-
/**
|
|
163
|
-
* Checks if the source type is identical to type of the target expression.
|
|
164
|
-
*
|
|
165
|
-
* @deprecated This matcher will be removed in TSTyche 3.
|
|
166
|
-
* To learn more, visit https://tstyche.org/release-notes/tstyche-2.
|
|
167
|
-
*/
|
|
168
|
-
(target: unknown): void;
|
|
169
|
-
};
|
|
170
126
|
/**
|
|
171
127
|
* Checks if a property key exists on the source type.
|
|
172
128
|
*/
|
|
173
129
|
toHaveProperty: (key: string | number | symbol) => void;
|
|
174
130
|
/**
|
|
175
131
|
* Checks if the source type matches the target type.
|
|
132
|
+
*
|
|
133
|
+
* @deprecated This matcher will be removed in TSTyche 4. To learn more, visit https://tstyche.org/release-notes/tstyche-3.
|
|
176
134
|
*/
|
|
177
135
|
toMatch: {
|
|
178
136
|
/**
|
|
179
137
|
* Checks if the source type matches the target type.
|
|
138
|
+
*
|
|
139
|
+
* @deprecated This matcher will be removed in TSTyche 4. To learn more, visit https://tstyche.org/release-notes/tstyche-3.
|
|
180
140
|
*/
|
|
181
141
|
<Target>(): void;
|
|
182
142
|
/**
|
|
183
143
|
* Checks if the source type matches type of the target expression.
|
|
144
|
+
*
|
|
145
|
+
* @deprecated This matcher will be removed in TSTyche 4. To learn more, visit https://tstyche.org/release-notes/tstyche-3.
|
|
184
146
|
*/
|
|
185
147
|
(target: unknown): void;
|
|
186
148
|
};
|
|
@@ -340,6 +302,18 @@ interface Expect {
|
|
|
340
302
|
};
|
|
341
303
|
};
|
|
342
304
|
}
|
|
305
|
+
/**
|
|
306
|
+
* Builds an assertion.
|
|
307
|
+
*/
|
|
308
|
+
declare const expect: Expect;
|
|
309
|
+
/**
|
|
310
|
+
* Reshapes type of the given object by removing the specified keys.
|
|
311
|
+
*/
|
|
312
|
+
declare function omit<T, K extends PropertyKey>(object: T, ...keys: [K, ...Array<K>]): Omit<T, K>;
|
|
313
|
+
/**
|
|
314
|
+
* Reshapes type of the given object by keeping only the specified keys.
|
|
315
|
+
*/
|
|
316
|
+
declare function pick<T, K extends keyof T>(object: T, ...keys: [K, ...Array<K>]): Pick<T, K>;
|
|
343
317
|
/**
|
|
344
318
|
* Defines a test group.
|
|
345
319
|
*/
|
|
@@ -352,9 +326,5 @@ declare const test: Test;
|
|
|
352
326
|
* Defines a single test.
|
|
353
327
|
*/
|
|
354
328
|
declare const it: Test;
|
|
355
|
-
/**
|
|
356
|
-
* Builds an assertion.
|
|
357
|
-
*/
|
|
358
|
-
declare const expect: Expect;
|
|
359
329
|
|
|
360
|
-
export { describe, expect, it, test };
|
|
330
|
+
export { describe, expect, it, omit, pick, test };
|
package/build/index.js
CHANGED
|
@@ -9,4 +9,4 @@ const noopChain = new Proxy(doNothing, {
|
|
|
9
9
|
},
|
|
10
10
|
});
|
|
11
11
|
|
|
12
|
-
export { noopChain as describe, noopChain as expect, noopChain as it, noopChain as test };
|
|
12
|
+
export { noopChain as describe, noopChain as expect, noopChain as it, doNothing as omit, doNothing as pick, noopChain as test };
|
package/build/tstyche.d.ts
CHANGED
|
@@ -1,11 +1,47 @@
|
|
|
1
1
|
import type ts from 'typescript';
|
|
2
2
|
|
|
3
|
-
declare
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
declare enum OptionBrand {
|
|
4
|
+
String = "string",
|
|
5
|
+
Number = "number",
|
|
6
|
+
Boolean = "boolean",
|
|
7
|
+
BareTrue = "bareTrue",// a boolean option that does not take a value and when specified is interpreted as 'true'
|
|
8
|
+
List = "list"
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare enum OptionGroup {
|
|
12
|
+
CommandLine = 2,
|
|
13
|
+
ConfigFile = 4
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare class ConfigDiagnosticText {
|
|
17
|
+
#private;
|
|
18
|
+
static expected(element: string): string;
|
|
19
|
+
static expectsListItemType(optionName: string, optionBrand: OptionBrand): string;
|
|
20
|
+
static expectsValue(optionName: string, optionGroup: OptionGroup): string;
|
|
21
|
+
static fileDoesNotExist(filePath: string): string;
|
|
22
|
+
static seen(element: string): string;
|
|
23
|
+
static testFileMatchCannotStartWith(segment: string): Array<string>;
|
|
24
|
+
static requiresValueType(optionName: string, optionBrand: OptionBrand, optionGroup: OptionGroup): string;
|
|
25
|
+
static unknownOption(optionName: string): string;
|
|
26
|
+
static versionIsNotSupported(value: string): string;
|
|
27
|
+
static watchCannotBeEnabled(): string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
declare class StoreService {
|
|
31
|
+
#private;
|
|
32
|
+
constructor();
|
|
33
|
+
getSupportedTags(): Promise<Array<string> | undefined>;
|
|
34
|
+
install(tag: string): Promise<void>;
|
|
35
|
+
load(tag: string): Promise<typeof ts | undefined>;
|
|
36
|
+
open(): Promise<void>;
|
|
37
|
+
prune(): Promise<void>;
|
|
38
|
+
update(): Promise<void>;
|
|
39
|
+
validateTag(tag: string): Promise<boolean | undefined>;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
declare enum DiagnosticCategory {
|
|
43
|
+
Error = "error",
|
|
44
|
+
Warning = "warning"
|
|
9
45
|
}
|
|
10
46
|
|
|
11
47
|
declare enum TestMemberBrand {
|
|
@@ -13,6 +49,7 @@ declare enum TestMemberBrand {
|
|
|
13
49
|
Test = "test",
|
|
14
50
|
Expect = "expect"
|
|
15
51
|
}
|
|
52
|
+
|
|
16
53
|
declare enum TestMemberFlags {
|
|
17
54
|
None = 0,
|
|
18
55
|
Fail = 1,
|
|
@@ -21,6 +58,14 @@ declare enum TestMemberFlags {
|
|
|
21
58
|
Todo = 8
|
|
22
59
|
}
|
|
23
60
|
|
|
61
|
+
declare class TestTree {
|
|
62
|
+
diagnostics: Set<ts.Diagnostic>;
|
|
63
|
+
members: Array<TestMember | Assertion>;
|
|
64
|
+
sourceFile: ts.SourceFile;
|
|
65
|
+
constructor(diagnostics: Set<ts.Diagnostic>, sourceFile: ts.SourceFile);
|
|
66
|
+
get hasOnly(): boolean;
|
|
67
|
+
}
|
|
68
|
+
|
|
24
69
|
declare class TestMember {
|
|
25
70
|
#private;
|
|
26
71
|
brand: TestMemberBrand;
|
|
@@ -54,22 +99,28 @@ declare class CollectService {
|
|
|
54
99
|
createTestTree(sourceFile: ts.SourceFile, semanticDiagnostics?: Array<ts.Diagnostic>): TestTree;
|
|
55
100
|
}
|
|
56
101
|
|
|
102
|
+
declare class SourceFile {
|
|
103
|
+
#private;
|
|
104
|
+
fileName: string;
|
|
105
|
+
text: string;
|
|
106
|
+
constructor(fileName: string, text: string);
|
|
107
|
+
getLineStarts(): Array<number>;
|
|
108
|
+
getLineAndCharacterOfPosition(position: number): {
|
|
109
|
+
line: number;
|
|
110
|
+
character: number;
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
|
|
57
114
|
declare class DiagnosticOrigin {
|
|
58
115
|
assertion: Assertion | undefined;
|
|
59
116
|
end: number;
|
|
60
|
-
sourceFile: ts.SourceFile;
|
|
117
|
+
sourceFile: SourceFile | ts.SourceFile;
|
|
61
118
|
start: number;
|
|
62
|
-
constructor(start: number, end: number, sourceFile: ts.SourceFile, assertion?: Assertion);
|
|
119
|
+
constructor(start: number, end: number, sourceFile: SourceFile | ts.SourceFile, assertion?: Assertion);
|
|
63
120
|
static fromAssertion(assertion: Assertion): DiagnosticOrigin;
|
|
64
|
-
static fromJsonNode(node: ts.Node, sourceFile: ts.SourceFile, skipTrivia: (position: number, sourceFile: ts.SourceFile) => number): DiagnosticOrigin;
|
|
65
121
|
static fromNode(node: ts.Node, assertion?: Assertion): DiagnosticOrigin;
|
|
66
122
|
}
|
|
67
123
|
|
|
68
|
-
declare enum DiagnosticCategory {
|
|
69
|
-
Error = "error",
|
|
70
|
-
Warning = "warning"
|
|
71
|
-
}
|
|
72
|
-
|
|
73
124
|
declare class Diagnostic {
|
|
74
125
|
#private;
|
|
75
126
|
category: DiagnosticCategory;
|
|
@@ -199,43 +250,6 @@ interface EnvironmentOptions {
|
|
|
199
250
|
typescriptPath: string | undefined;
|
|
200
251
|
}
|
|
201
252
|
|
|
202
|
-
declare enum OptionBrand {
|
|
203
|
-
String = "string",
|
|
204
|
-
Number = "number",
|
|
205
|
-
Boolean = "boolean",
|
|
206
|
-
BareTrue = "bareTrue",// a boolean option that does not take a value and when specified is interpreted as 'true'
|
|
207
|
-
List = "list"
|
|
208
|
-
}
|
|
209
|
-
declare enum OptionGroup {
|
|
210
|
-
CommandLine = 2,
|
|
211
|
-
ConfigFile = 4
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
declare class ConfigDiagnosticText {
|
|
215
|
-
#private;
|
|
216
|
-
static doubleQuotesExpected(): string;
|
|
217
|
-
static expectsListItemType(optionName: string, optionBrand: OptionBrand): string;
|
|
218
|
-
static expectsValue(optionName: string, optionGroup: OptionGroup): string;
|
|
219
|
-
static fileDoesNotExist(filePath: string): string;
|
|
220
|
-
static testFileMatchCannotStartWith(segment: string): Array<string>;
|
|
221
|
-
static requiresValueType(optionName: string, optionBrand: OptionBrand, optionGroup: OptionGroup): string;
|
|
222
|
-
static unknownOption(optionName: string): string;
|
|
223
|
-
static versionIsNotSupported(value: string): string;
|
|
224
|
-
static watchCannotBeEnabled(): string;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
declare class StoreService {
|
|
228
|
-
#private;
|
|
229
|
-
constructor();
|
|
230
|
-
getSupportedTags(): Promise<Array<string> | undefined>;
|
|
231
|
-
install(tag: string): Promise<void>;
|
|
232
|
-
load(tag: string): Promise<typeof ts | undefined>;
|
|
233
|
-
open(): Promise<void>;
|
|
234
|
-
prune(): Promise<void>;
|
|
235
|
-
update(): Promise<void>;
|
|
236
|
-
validateTag(tag: string): Promise<boolean | undefined>;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
253
|
interface ResolvedConfig extends EnvironmentOptions, Omit<CommandLineOptions, keyof ConfigFileOptions | "config">, Required<ConfigFileOptions> {
|
|
240
254
|
/**
|
|
241
255
|
* The path to a TSTyche configuration file.
|
|
@@ -525,6 +539,8 @@ declare class Cli {
|
|
|
525
539
|
|
|
526
540
|
type Event = ["config:error", {
|
|
527
541
|
diagnostics: Array<Diagnostic>;
|
|
542
|
+
}] | ["deprecation:info", {
|
|
543
|
+
diagnostics: Array<Diagnostic>;
|
|
528
544
|
}] | ["select:error", {
|
|
529
545
|
diagnostics: Array<Diagnostic>;
|
|
530
546
|
}] | ["run:start", {
|
|
@@ -651,6 +667,7 @@ declare class ExpectDiagnosticText {
|
|
|
651
667
|
static argumentMustBeProvided(argumentNameText: string): string;
|
|
652
668
|
static componentAcceptsProps(isTypeNode: boolean): string;
|
|
653
669
|
static componentDoesNotAcceptProps(isTypeNode: boolean): string;
|
|
670
|
+
static matcherIsDeprecated(matcherNameText: string): Array<string>;
|
|
654
671
|
static matcherIsNotSupported(matcherNameText: string): string;
|
|
655
672
|
static overloadGaveTheFollowingError(index: number, count: number, signatureText: string): string;
|
|
656
673
|
static raisedTypeError(count?: number): string;
|
|
@@ -844,4 +861,4 @@ declare class WatchService {
|
|
|
844
861
|
watch(cancellationToken: CancellationToken): AsyncIterable<Array<Task>>;
|
|
845
862
|
}
|
|
846
863
|
|
|
847
|
-
export { Assertion, CancellationHandler, CancellationReason, CancellationToken, Cli, CollectService, Color, type CommandLineOptions, ConfigDiagnosticText, type ConfigFileOptions, ConfigService, DescribeResult, Diagnostic, DiagnosticCategory, DiagnosticOrigin, type Event, EventEmitter, type EventHandler, ExitCodeHandler, ExpectResult, ExpectService, type FileWatchHandler, FileWatcher, type InputHandler, InputService, type ItemDefinition, Line, type MatchResult, OptionBrand, type OptionDefinition, OptionDefinitionsMap, OptionGroup, OutputService, Path, ProjectResult, ProjectService, type ResolvedConfig, Result, ResultCount, ResultHandler, ResultStatus, ResultTiming, RunReporter, Runner, Scribbler, ScribblerJsx, type ScribblerOptions, SelectDiagnosticText, SelectService, SetupReporter, StoreService, SummaryReporter, TSTyche, TargetResult, type TargetResultStatus, Task, TaskResult, type TaskResultStatus, TestMember, TestMemberBrand, TestMemberFlags, TestResult, TestTree, Text, type TypeChecker, Version, type WatchHandler, WatchReporter, WatchService, Watcher, type WatcherOptions, addsPackageText, defaultOptions, describeNameText, diagnosticText, environmentOptions, fileViewText, formattedText, helpText, summaryText, taskStatusText, testNameText, usesCompilerText, waitingForFileChangesText, watchUsageText };
|
|
864
|
+
export { Assertion, CancellationHandler, CancellationReason, CancellationToken, Cli, CollectService, Color, type CommandLineOptions, ConfigDiagnosticText, type ConfigFileOptions, ConfigService, DescribeResult, Diagnostic, DiagnosticCategory, DiagnosticOrigin, type Event, EventEmitter, type EventHandler, ExitCodeHandler, ExpectResult, ExpectService, type FileWatchHandler, FileWatcher, type InputHandler, InputService, type ItemDefinition, Line, type MatchResult, OptionBrand, type OptionDefinition, OptionDefinitionsMap, OptionGroup, OutputService, Path, ProjectResult, ProjectService, type ResolvedConfig, Result, ResultCount, ResultHandler, ResultStatus, ResultTiming, RunReporter, Runner, Scribbler, ScribblerJsx, type ScribblerOptions, SelectDiagnosticText, SelectService, SetupReporter, SourceFile, StoreService, SummaryReporter, TSTyche, TargetResult, type TargetResultStatus, Task, TaskResult, type TaskResultStatus, TestMember, TestMemberBrand, TestMemberFlags, TestResult, TestTree, Text, type TypeChecker, Version, type WatchHandler, WatchReporter, WatchService, Watcher, type WatcherOptions, addsPackageText, defaultOptions, describeNameText, diagnosticText, environmentOptions, fileViewText, formattedText, helpText, summaryText, taskStatusText, testNameText, usesCompilerText, waitingForFileChangesText, watchUsageText };
|