An arguments object for the changed signal.

interface IChangedArgs {
    change: "removed" | "added";
    name?: string;
    type: "widgetFactory" | "modelFactory" | "widgetExtension" | "fileType";
}

Properties

Properties

change: "removed" | "added"

Whether the item was added or removed.

name?: string

The name of the item or the widget factory being extended.

type: "widgetFactory" | "modelFactory" | "widgetExtension" | "fileType"

The type of the changed item.