screenshotgenie
Version:
Node.js client library for Screenshot Genie
16 lines (15 loc) • 365 B
TypeScript
export type ScreenshotGenieConfig = {
apiKey?: string;
host?: string;
};
export type ImageHash = string;
export type ImageFileName = string;
export type FormattedDateString = string;
export type ImageKey = string;
export type ImageGenerationInputs = {
html?: string;
url?: string;
width: number;
height: number;
browserZoom?: number;
};