Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump xo to fix the main branch #37

Merged
merged 1 commit into from
Jun 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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"
}
}