angles-javascript-client
Version:
This is the javascript client for the Angles Dashboard. It allows you to store your test results.
19 lines (18 loc) • 456 B
TypeScript
import { Build } from './Build';
import { Platform } from './Platform';
import { ExecutionStates } from './enum/ExecutionStates';
import { Action } from './Action';
export declare class Execution {
_id: string;
title: string;
suite: string;
feature: string;
build: Build;
start: Date;
end: Date;
actions: Action[];
platforms: Platform[];
tags: string[];
meta: Map<string, string>;
status: ExecutionStates;
}