Skip to content

Commit

Permalink
Bump xo (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronami committed Jun 12, 2023
1 parent b91e045 commit e8c2c9e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Expand Up @@ -3,12 +3,12 @@ export class TimeoutError extends Error {
constructor(message?: string);
}

export interface ClearablePromise<T> extends Promise<T> {
export type ClearablePromise<T> = {
/**
Clear the timeout.
*/
clear: () => void;
}
} & Promise<T>;

export type Options<ReturnType> = {
/**
Expand Down
1 change: 1 addition & 0 deletions index.test-d.ts
@@ -1,4 +1,5 @@
/* eslint-disable @typescript-eslint/no-floating-promises */
/* eslint-disable unicorn/prefer-top-level-await */
import {expectType, expectError} from 'tsd';
import pTimeout, {TimeoutError} from './index.js';

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -43,6 +43,6 @@
"p-cancelable": "^4.0.1",
"time-span": "^5.1.0",
"tsd": "^0.22.0",
"xo": "^0.51.0"
"xo": "^0.54.2"
}
}

0 comments on commit e8c2c9e

Please sign in to comment.