chromiumly
Version:
A lightweight Typescript library that interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.
21 lines (20 loc) • 603 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;
}