interface CustomEvent
implements Event
import { type CustomEvent } from "https://deno.land/x/deno@v1.36.0/cli/tsc/dts/lib.deno.shared_globals.d.ts";
Properties
readonly
detail: TReturns any custom data event was created with. Typically used for synthetic events.
import { CustomEvent } from "https://deno.land/x/deno@v1.36.0/cli/tsc/dts/lib.deno.shared_globals.d.ts";
type
{ readonly prototype: CustomEvent; new <T>(typeArg: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>; }