Interface CriticalErrorNotification

Critical error notification. Emitted for fatal errors requiring process termination.

interface CriticalErrorNotification {
    backtest: boolean;
    error: object;
    id: string;
    message: string;
    timestamp: number;
    type: "error.critical";
}

Properties

backtest: boolean
error: object
id: string
message: string
timestamp: number
type: "error.critical"