Generate clients (#206)

This commit is contained in:
Janos Dobronszki
2021-09-16 12:52:36 +01:00
committed by GitHub
parent 552c321dd7
commit d4d9c1c176
334 changed files with 9334 additions and 45 deletions

29
clients/ts/thumbnail/index.ts Executable file
View File

@@ -0,0 +1,29 @@
import * as m3o from "@m3o/m3o-node";
export class ThumbnailService {
private client: m3o.Client;
constructor(token: string) {
this.client = new m3o.Client({ token: token });
}
// Create a thumbnail screenshot by passing in a url, height and width
screenshot(request: ScreenshotRequest): Promise<ScreenshotResponse> {
return this.client.call(
"thumbnail",
"Screenshot",
request
) as Promise<ScreenshotResponse>;
}
}
export interface ScreenshotRequest {
// height of the browser window, optional
height?: number;
url?: string;
// width of the browser window. optional
width?: number;
}
export interface ScreenshotResponse {
imageURL?: string;
}