chromiumly
Version:
A lightweight Typescript library that interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.
26 lines (25 loc) • 774 B
TypeScript
/**
* Class representing configuration for interacting with Gotenberg service.
*/
export declare class Gotenberg {
/**
* The endpoint for the Gotenberg service.
* @type {string | undefined}
*/
static get endpoint(): string | undefined;
/**
* The username for basic authentication with the Gotenberg service.
* @type {string | undefined}
*/
static get username(): string | undefined;
/**
* The password for basic authentication with the Gotenberg service.
* @type {string | undefined}
*/
static get password(): string | undefined;
/**
* The API key for X-Api-Key authentication with the Gotenberg service.
* @type {string | undefined}
*/
static get apiKey(): string | undefined;
}