@flowscripter/dynamic-cli-framework
    Preparing search index...

    Interface Context

    interface Context {
        cliConfig: CLIConfig;
        doesServiceExist(id: string): boolean;
        getServiceById(id: string): unknown;
    }
    Index
    cliConfig: CLIConfig

    The CLIConfig in use by the CLI.

    • Check if the specified service exists in the context.

      Parameters

      • id: string

        the ID of the desired service.

      Returns boolean

    • Return the service identified by the specified ID.

      Parameters

      • id: string

        the ID of the service to retrieve.

      Returns unknown