angles-javascript-client
Version:
This is the javascript client for the Angles Dashboard. It allows you to store your test results.
16 lines (15 loc) • 330 B
TypeScript
import { Build } from './Build';
import { Platform } from './Platform';
export declare class Screenshot {
_id: string;
build: Build;
thumbnail: string;
timestamp: Date;
path: string;
view: string;
height: number;
width: number;
platform: Platform;
platformId: string;
tags: string[];
}