mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
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;
|
||
|
}
|