Type Alias TemplateDataManagersConfig

TemplateDataManagersConfig: {
    env: string;
    templateID: string;
    token?: string;
    fetcher?: Fetcher;
}

Config for getTemplateDataManagers. Any valid access token of the environment is accepted (the route only checks the token signature, no permission required), so token is optional. Inject fetcher for testing.

Type declaration

  • env: string
  • templateID: string
  • Optionaltoken?: string
  • Optionalfetcher?: Fetcher