UNPKG

angles-javascript-client

Version:

This is the javascript client for the Angles Dashboard. It allows you to store your test results.

10 lines (9 loc) 219 B
import { Step } from './Step'; import { ExecutionStates } from './enum/ExecutionStates'; export declare class Action { name: string; steps: Step[]; status: ExecutionStates; start: Date; end: Date; }