UNPKG

angles-javascript-client

Version:

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

13 lines (12 loc) 296 B
import { Action } from '../Action'; import { Platform } from '../Platform'; export declare class CreateExecution { title: string; suite: string; feature: string; build: string; actions: Action[]; platforms: Platform[]; tags: string[]; meta: Map<string, string>; }