isPrime.d.ts 67 B

123
  1. declare function isPrime(num: number): boolean;
  2. export = isPrime;