Interface CustomNamespace

A custom namespace

interface CustomNamespace {
    canBeRemoved(): boolean;
    resolve(dependency: string, filter?: Filter, array?: boolean): unknown;
}

Methods

  • Returns if the this custom namespace can be removed

    Returns boolean