Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Jan 7, 2024
1 parent ace9cac commit c136125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {expectType} from 'tsd';
import parseMilliseconds, {type TimeComponents} from './index.js';

const result1: TimeComponents<number> = parseMilliseconds(3000);
const result1: TimeComponents = parseMilliseconds(3000);

expectType<number>(result1.days);
expectType<number>(result1.hours);
Expand Down

0 comments on commit c136125

Please sign in to comment.