Interface DefaultApplicationLayerConfig<ClientConfig, SourceConfig>

interface DefaultApplicationLayerConfig<
    ClientConfig extends DefaultLayerClientConfig = DefaultLayerClientConfig,
    SourceConfig extends DefaultLayerSourceConfig = DefaultLayerSourceConfig,
> {
    clientConfig?: ClientConfig;
    layerId: number;
    sourceConfig?: SourceConfig;
}

Type Parameters

Properties

clientConfig?: ClientConfig
layerId: number
sourceConfig?: SourceConfig