简历上传,pdf简历下载
This commit is contained in:
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
/** html2pdf.js 类型声明 */
|
||||
declare module 'html2pdf.js' {
|
||||
interface Html2PdfOptions {
|
||||
margin?: number | number[]
|
||||
filename?: string
|
||||
image?: { type?: string; quality?: number }
|
||||
html2canvas?: Record<string, unknown>
|
||||
jsPDF?: { unit?: string; format?: string; orientation?: string }
|
||||
[key: string]: unknown
|
||||
}
|
||||
|
||||
interface Html2PdfInstance {
|
||||
set(options: Html2PdfOptions): Html2PdfInstance
|
||||
from(element: HTMLElement | string): Html2PdfInstance
|
||||
save(): Promise<void>
|
||||
toPdf(): Html2PdfInstance
|
||||
output(type: string): Promise<unknown>
|
||||
}
|
||||
|
||||
function html2pdf(): Html2PdfInstance
|
||||
export default html2pdf
|
||||
}
|
||||
Reference in New Issue
Block a user