Documentation
    Preparing search index...

    Type Alias ConfigProvider<T>

    A config provider waits for the application to get booted and then resolves the config. It receives an instance of the application service.

    type ConfigProvider<T> = {
        type: "provider";
        resolver: (app: ApplicationService) => Promise<T>;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    type: "provider"
    resolver: (app: ApplicationService) => Promise<T>