@exmg/livery
Version:
Ex Machina Group Livery Web SDK.
24 lines (23 loc) • 448 B
TypeScript
declare global {
interface GlobalEventHandlersEventMap {
'livery-error': LiveryErrorEvent;
}
}
/**
* Dispatched when an error occurs.
*/
export declare class LiveryErrorEvent extends Event {
/**
* Error that occurred.
*/
readonly error: Error;
/**
* Event type.
*/
static type: "livery-error";
constructor(
/**
* Error that occurred.
*/
error: Error, init?: EventInit);
}