Skip to content

Commit e9286fe

Browse files
committed
revert unused imports
1 parent 72927ca commit e9286fe

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tests/types.test.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
import { Expect, Equal } from '../src/types/helpers';
22
import { match, P } from '../src';
33
import { State, Event } from './types-catalog/utils';
4-
import {
5-
InvertPattern,
6-
InvertPatternForExclude,
7-
} from '../src/types/InvertPattern';
8-
import { Chainable, GuardP, NotP } from '../src/types/Pattern';
9-
import { ExtractPreciseValue } from '../src/types/ExtractPreciseValue';
104

115
describe('types', () => {
126
type Input = [State, Event];
@@ -157,7 +151,6 @@ describe('types', () => {
157151
>;
158152
return 'ok';
159153
});
160-
161154
match<Input>({ type: 'hello' })
162155
.with(P.not(P.when((x) => true)), (x) => {
163156
type t = Expect<Equal<typeof x, Input>>;

0 commit comments

Comments
 (0)