environment_credentials.d.ts 363 B

12345678
  1. import {Credentials} from '../credentials';
  2. export class EnvironmentCredentials extends Credentials {
  3. /**
  4. * Creates a new EnvironmentCredentials class with a given variable prefix envPrefix.
  5. * @param {string} envPrefix - The prefix for the environment variable names excluding the separating underscore.
  6. */
  7. constructor(envPrefix: string);
  8. }