Backstage
    Preparing search index...

    A source of configuration data.

    It is recommended to implement the readConfigData method as an async generator.

    class MyConfigSource implements ConfigSource {
    async *readConfigData() {
    yield {
    config: [{
    context: 'example',
    data: { backend: { baseUrl: 'http://localhost' } }
    }]
    };
    }
    }
    interface ConfigSource {
        readConfigData(
            options?: ReadConfigDataOptions,
        ): AsyncConfigSourceGenerator;
    }

    Implemented by

    Index

    Methods