Preparing search index...

    Interface for plugin component registration.

        // Every interface registered with the plugin system extends IPluginComponent.
    // Retrieve one by calling pluginSystem.findInterface() with its interfaceId
    // and casting to the concrete type.
    const model = this.pluginSystem.findInterface(
    Editor.Model.IModel.interfaceId
    ) as Editor.Model.IModel;

    console.log('Resolved IPluginComponent (IModel). Current project file:', model.project.projectFile.toString());

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Returns the name of this object's type.

      Returns string

    • Returns true if the object is of the specified type.

      Parameters

      • type: string

      Returns boolean