Preparing search index...

    Interface for package discovery and registration.

        // Resolve IPackageRegistry to discover registered package library paths.
    const registry = this.pluginSystem.findInterface(
    Editor.IPackageRegistry.interfaceId
    ) as Editor.IPackageRegistry;
    if (Editor.isNull(registry)) {
    console.log('IPackageRegistry not available');
    return;
    }

    const libraryPaths = registry.getLibraryPaths();
    console.log('Library paths count:', libraryPaths.length);
    for (const p of libraryPaths) {
    console.log(' Library path:', p.toString());
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    interfaceId: InterfaceId

    Methods

    • Parameters

      Returns boolean

    • Parameters

      Returns boolean

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

      Parameters

      • type: string

      Returns boolean