LogoRobo.js
Packages@robojs/roadmap

ProviderConfig

Type Alias: ProviderConfig

type ProviderConfig = {
  options: Record<string, unknown>;
  type: string;
};

Identifies the provider implementation and its raw configuration.

Type declaration

NameTypeDescription
optionsRecord<string, unknown>Implementation specific configuration options.
typestringProvider type identifier (e.g., jira, github).

Remarks

The options bag is intentionally untyped to allow provider packages to define their own schema. Providers should validate and coerce values during import('./providers/base.js').RoadmapProvider.validateConfig.

On this page