Interface ExtensionPackEvent

interface ExtensionPackEvent {
    timestamp: string;
    type: "pack:loaded" | "pack:failed";
    source: ExtensionSourceMetadata;
    error?: Error;
}

Hierarchy (view full)

Properties

timestamp: string
type: "pack:loaded" | "pack:failed"
error?: Error