eligius
    Preparing search index...

    Interface IResourceImporter

    Describes an object that acts as a registry for imported resources and is able to return all of the registered operation, controller and provider names.

    interface IResourceImporter {
        getControllerNames(): string[];
        getOperationNames(): string[];
        getProviderNames(): string[];
        import(name: string): Record<string, any>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods

    • Returns string[]

    • Returns string[]

    • Returns string[]