< Summary - Envilder Core (TypeScript)

Information
Class: src/envilder/core/application/pullSecretsToEnv/PullSecretsToEnvCommand.ts
Assembly: Default
File(s): src/envilder/core/application/pullSecretsToEnv/PullSecretsToEnvCommand.ts
Tag: 151_24479375065
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 10
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

src/envilder/core/application/pullSecretsToEnv/PullSecretsToEnvCommand.ts

#LineLine coverage
 1export class PullSecretsToEnvCommand {
 2  constructor(
 83    public readonly mapPath: string,
 84    public readonly envFilePath: string,
 5  ) {}
 6
 7  static create(mapPath: string, envFilePath: string): PullSecretsToEnvCommand {
 88    return new PullSecretsToEnvCommand(mapPath, envFilePath);
 9  }
 10}

Methods/Properties

(anonymous_0)
(anonymous_1)