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

ErrorEvent

Events providing information related to errors in scripts or in files.

interface ErrorEvent extends Event {
readonly colno: number;
readonly error: any;
readonly filename: string;
readonly lineno: number;
readonly message: string;
}
var ErrorEvent: {
prototype: ErrorEvent;
new (type: string, eventInitDict?: ErrorEventInit): ErrorEvent;
}
;

§Extends

§Properties

§
readonly colno: number
[src]
§
readonly error: any
[src]
§
readonly filename: string
[src]
§
readonly lineno: number
[src]
§
readonly message: string
[src]