AbortSignalLike interface
Permite que a solicitação seja anulada ao disparar o evento "abort". Compatível com o abortSignal interno do navegador e polyfills comuns.
Propriedades
aborted | Indica se o sinal já foi anulado. |
Métodos
add |
Adicione o novo ouvinte de eventos "abort", só dê suporte ao evento "abort". |
remove |
Remova o ouvinte de eventos "abort" e dê suporte apenas ao evento "abort". |
Detalhes da propriedade
aborted
Indica se o sinal já foi anulado.
aborted: boolean
Valor da propriedade
boolean
Detalhes do método
addEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)
Adicione o novo ouvinte de eventos "abort", só dê suporte ao evento "abort".
function addEventListener(type: "abort", listener: (this: AbortSignalLike, ev: any) => any, options?: any)
Parâmetros
- type
-
"abort"
- listener
-
(this: AbortSignalLike, ev: any) => any
- options
-
any
removeEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)
Remova o ouvinte de eventos "abort" e dê suporte apenas ao evento "abort".
function removeEventListener(type: "abort", listener: (this: AbortSignalLike, ev: any) => any, options?: any)
Parâmetros
- type
-
"abort"
- listener
-
(this: AbortSignalLike, ev: any) => any
- options
-
any