angles-javascript-client
Version:
This is the javascript client for the Angles Dashboard. It allows you to store your test results.
12 lines • 344 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Artifact = void 0;
class Artifact {
constructor(groupId, artifactId, version) {
this.groupId = groupId;
this.artifactId = artifactId;
this.version = version;
}
}
exports.Artifact = Artifact;
//# sourceMappingURL=Artifact.js.map