angles-javascript-client
Version:
This is the javascript client for the Angles Dashboard. It allows you to store your test results.
20 lines (19 loc) • 500 B
TypeScript
import { ExecutionStates } from './enum/ExecutionStates';
import { Environment } from './Environment';
import { Team } from './Team';
import { Artifact } from './Artifact';
import { Suite } from './Suite';
export declare class Build {
_id: string;
name: string;
result: Map<string, number>;
status: ExecutionStates;
start: Date;
end: Date;
artifacts: Artifact;
keep: boolean;
environment: Environment;
team: Team;
component: string;
suites: Suite[];
}