File tree Expand file tree Collapse file tree 1 file changed +1
-17
lines changed Expand file tree Collapse file tree 1 file changed +1
-17
lines changed Original file line number Diff line number Diff line change @@ -12,23 +12,7 @@ export {
12
12
export { afterEach , beforeEach , describe , it } from "jsr:@std/testing/bdd" ;
13
13
export { type Spy , spy , type Stub , stub } from "jsr:@std/testing/mock" ;
14
14
export { assertType , type IsExact } from "jsr:@std/testing/types" ;
15
-
16
- /**
17
- * Checks if the actual type `A` is assignable to the expected type `E`, and
18
- * vice versa.
19
- *
20
- * ```ts
21
- * // false because E is not assignable to A
22
- * type P = IsMutuallyAssignable<string & RegExpMatchArray, string>;
23
- * // false because A is not assignable to E
24
- * type Q = IsMutuallyAssignable<string | RegExpMatchArray, string>;
25
- * // true
26
- * type R = IsMutuallyAssignable<string | (string & RegExpMatchArray), string>;
27
- * ```
28
- */
29
- export type IsMutuallyAssignable < A , E > = [ E ] extends [ A ]
30
- ? [ A ] extends [ E ] ? true : false
31
- : false ;
15
+ export { type IsMutuallyAssignable } from "jsr:@std/testing/unstable-types" ;
32
16
33
17
/**
34
18
* Collects a potentially async iterator of `Uint8Array` objects into a single
You can’t perform that action at this time.
0 commit comments