UNPKG

html2pdf-ts

Version:
18 lines (17 loc) 350 B
import { HTML2PDFOptions } from './types'; type QueueItem = { id: string; html2pdf: { html: string; options: HTML2PDFOptions; }; }; export declare class Queue { private items; constructor(); enqueue(item: QueueItem): void; peek(): QueueItem | null; isEmpty(): boolean; size(): number; } export {};