Skip to content

Commit

Permalink
fix: use import type
Browse files Browse the repository at this point in the history
  • Loading branch information
skarab42 committed Aug 26, 2022
1 parent df4c21d commit 13f834a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/jsonify.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type {JsonPrimitive, JsonValue} from './basic';
import {Finite, NegativeInfinity, PositiveInfinity} from './numeric';
import {TypedArray} from './typed-array';
import type {Finite, NegativeInfinity, PositiveInfinity} from './numeric';
import type {TypedArray} from './typed-array';

// Note: The return value has to be `any` and not `unknown` so it can match `void`.
type NotJsonable = ((...args: any[]) => any) | undefined | symbol;
Expand Down

0 comments on commit 13f834a

Please sign in to comment.