|
1 | 1 | import { noop } from '@internal/tests/utils/helpers'
|
2 |
| -import type { AnyFunction, AnyNonNullishValue } from '@internal/tsHelpers' |
| 2 | +import type { |
| 3 | + AnyFunction, |
| 4 | + AnyNonNullishValue, |
| 5 | + EmptyObject, |
| 6 | +} from '@internal/tsHelpers' |
3 | 7 | import type { TSVersion } from '@phryneas/ts-version'
|
4 | 8 | import type {
|
5 | 9 | AsyncThunk,
|
@@ -491,19 +495,15 @@ describe('type tests', () => {
|
491 | 495 | return 'ret' as const
|
492 | 496 | })
|
493 | 497 |
|
494 |
| - expectTypeOf(thunk).toEqualTypeOf< |
495 |
| - AsyncThunk<'ret', void, AnyNonNullishValue> |
496 |
| - >() |
| 498 | + expectTypeOf(thunk).toEqualTypeOf<AsyncThunk<'ret', void, EmptyObject>>() |
497 | 499 | })
|
498 | 500 |
|
499 | 501 | test('createAsyncThunk without generics, accessing `api` does not break return type', () => {
|
500 | 502 | const thunk = createAsyncThunk('test', (_: void, api) => {
|
501 | 503 | return 'ret' as const
|
502 | 504 | })
|
503 | 505 |
|
504 |
| - expectTypeOf(thunk).toEqualTypeOf< |
505 |
| - AsyncThunk<'ret', void, AnyNonNullishValue> |
506 |
| - >() |
| 506 | + expectTypeOf(thunk).toEqualTypeOf<AsyncThunk<'ret', void, EmptyObject>>() |
507 | 507 | })
|
508 | 508 |
|
509 | 509 | test('createAsyncThunk rejectWithValue without generics: Expect correct return type', () => {
|
@@ -637,11 +637,11 @@ describe('type tests', () => {
|
637 | 637 |
|
638 | 638 | test('meta return values', () => {
|
639 | 639 | // return values
|
640 |
| - createAsyncThunk<'ret', void, AnyNonNullishValue>( |
| 640 | + createAsyncThunk<'ret', void, EmptyObject>( |
641 | 641 | 'test',
|
642 | 642 | (_, api) => 'ret' as const,
|
643 | 643 | )
|
644 |
| - createAsyncThunk<'ret', void, AnyNonNullishValue>( |
| 644 | + createAsyncThunk<'ret', void, EmptyObject>( |
645 | 645 | 'test',
|
646 | 646 | async (_, api) => 'ret' as const,
|
647 | 647 | )
|
|
0 commit comments