isFinite.d.ts 80 B

123
  1. declare function isFinite(x: unknown): x is number | bigint;
  2. export = isFinite;