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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(primitives): expose AbortController & AbortSignal types properly #109

Merged
merged 1 commit into from Aug 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 5 additions & 11 deletions packages/primitives/type-definitions/abort-controller.d.ts
@@ -1,18 +1,12 @@
declare const AbortControllerConstructor: typeof AbortController
declare const AbortSignalConstructor: typeof AbortSignal
declare const DOMExceptionConstructor: typeof DOMException
declare const AbortControllerConstructor: AbortController

declare var WathwgAbortSignal: {
prototype: AbortSignalConstructor
new (): AbortSignalConstructor
declare var AbortSignal: {
prototype: typeof AbortSignal
new (): typeof AbortSignal
/** Returns an AbortSignal instance which will be aborted in milliseconds milliseconds. Its abort reason will be set to a "TimeoutError" DOMException. */
timeout(milliseconds: number): AbortSignal
/** Returns an AbortSignal instance whose abort reason is set to reason if not undefined; otherwise to an "AbortError" DOMException. */
abort(reason?: string): AbortSignal
}

export {
AbortControllerConstructor as AbortController,
DOMExceptionConstructor as DOMException,
WathwgAbortSignal as AbortSignal,
}
export { AbortControllerConstructor as AbortController, AbortSignal }