pdfmake-wrapper
Version:
Wrapper based on pdfmake library to generate PDF documents in an easy and readable way.
13 lines • 573 B
TypeScript
/**
* interfaces of the type for operations when a PDF is created
*/
export interface ICreatePDF {
download(filename?: string, cb?: (v?: any) => void, options?: any): void;
open(options?: any, win?: Window): void;
print(options?: any, win?: Window): void;
getDataUrl(cb?: (v?: any) => void, options?: any): void;
getBase64(cb?: (v?: any) => void, options?: any): void;
getBuffer(cb?: (v?: any) => void, options?: any): void;
getBlob(cb?: (v?: any) => void, options?: any): void;
}
//# sourceMappingURL=create-pdf.interface.d.ts.map