AbortSignalLike interface
Permite que a solicitação seja abortada após o disparo do evento "abort". Compatível com o navegador built-in AbortSignal e polyfills comuns.
Propriedades
aborted | |
add |
|
dispatch |
|
onabort | |
remove |
Detalhes de Propriedade
aborted
aborted: boolean
Valor de Propriedade
boolean
addEventListener
addEventListener: (type: "abort", listener: (this: AbortSignalLike, ev: Event) => any, options?: any) => void
Valor de Propriedade
(type: "abort", listener: (this: AbortSignalLike, ev: Event) => any, options?: any) => void
dispatchEvent
dispatchEvent: (event: Event) => boolean
Valor de Propriedade
(event: Event) => boolean
onabort
onabort: null | (this: AbortSignalLike, ev: Event) => any
Valor de Propriedade
null | (this: AbortSignalLike, ev: Event) => any
removeEventListener
removeEventListener: (type: "abort", listener: (this: AbortSignalLike, ev: Event) => any, options?: any) => void
Valor de Propriedade
(type: "abort", listener: (this: AbortSignalLike, ev: Event) => any, options?: any) => void