// TODO: 无用,可删
declare module 'html2canvas' {
interface Html2CanvasOptions {
backgroundColor?: string | null
scale?: number
useCORS?: boolean
allowTaint?: boolean
height?: number
width?: number
x?: number
y?: number
}
function html2canvas(
element: HTMLElement,
options?: Html2CanvasOptions
): Promise
export default html2canvas
}