mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
ff35c7dbd3
* test: update karma runner * fix: Promise polyfill for testrunner
14 lines
270 B
TypeScript
14 lines
270 B
TypeScript
export interface PlatformDetails {
|
|
name: string;
|
|
version: string;
|
|
}
|
|
|
|
export interface ScreenshotRequest {
|
|
screenshot: string;
|
|
test: string;
|
|
platform: PlatformDetails;
|
|
devicePixelRatio: number;
|
|
windowWidth: number;
|
|
windowHeight: number;
|
|
}
|