7 lines
238 B
TypeScript
7 lines
238 B
TypeScript
import { Event } from "./Event";
|
|
export declare class ErrorEvent extends Event {
|
|
readonly error: any;
|
|
readonly message: string;
|
|
constructor(type: string, init?: ErrorEventInit);
|
|
}
|
|
//# sourceMappingURL=ErrorEvent.d.ts.map
|