isLeapYear.d.ts 74 B

1234
  1. declare function isLeapYear(year: number): boolean;
  2. export = isLeapYear;