< Summary - Envilder Core (TypeScript)

Information
Class: src/envilder/core/application/pushSingle/PushSingleCommand.ts
Assembly: Default
File(s): src/envilder/core/application/pushSingle/PushSingleCommand.ts
Tag: 151_24479375065
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 15
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/pushSingle/PushSingleCommand.ts

#LineLine coverage
 1export class PushSingleCommand {
 2  constructor(
 43    public readonly key: string,
 44    public readonly value: string,
 45    public readonly secretPath: string,
 6  ) {}
 7
 8  static create(
 9    key: string,
 10    value: string,
 11    secretPath: string,
 12  ): PushSingleCommand {
 413    return new PushSingleCommand(key, value, secretPath);
 14  }
 15}

Methods/Properties

(anonymous_0)
(anonymous_1)