Type Alias DiscloudConfigType<T, V>

DiscloudConfigType<T, V>: T extends "bot"
    ? DiscloudConfigBot<V>
    : T extends "site"
        ? DiscloudConfigSite<V>
        : BaseDiscloudConfig<V>

Type Parameters