Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MutationObserverErrorResult

interface MutationObserverErrorResult <TData = unknown, TError = unknown, TVariables = void, TContext = unknown> extends MutationObserverBaseResult<TData, TError, TVariables, TContext> {
data: undefined;
error: TError;
isError: true;
isIdle: false;
isLoading: false;
isSuccess: false;
status: "error";
}

§Type Parameters

§
TData = unknown
[src]
§
TError = unknown
[src]
§
TVariables = void
[src]
§
TContext = unknown
[src]

§Extends

§
MutationObserverBaseResult<TData, TError, TVariables, TContext>
[src]

§Properties

§
data: undefined
[src]
§
error: TError
[src]
§
isError: true
[src]
§
isIdle: false
[src]
§
isLoading: false
[src]
§
isSuccess: false
[src]
§
status: "error"
[src]