umay-render
Version:
Free, high-performance HTML to PDF and HTML to Image conversion SDK for both browser and Node.js
11 lines (10 loc) • 312 B
TypeScript
import { UmayConfig } from "./config";
import { RenderInput } from "./schemas";
export declare class UmaySDK {
private httpClient;
private config;
constructor(config?: Partial<UmayConfig>);
render(request: RenderInput): Promise<Uint8Array>;
}
export * from "./schemas";
export * from "./errors";