Interface PlatformPluginConstructor<Config>

interface PlatformPluginConstructor<
    Config extends PlatformConfig = PlatformConfig,
> {
    new PlatformPluginConstructor(
        logger: Logging,
        config: Config,
        api: API,
    ): DynamicPlatformPlugin | StaticPlatformPlugin | IndependentPlatformPlugin;
}

Type Parameters

Constructors

Constructors