fix(reports): fixing unit test (#27236)

This commit is contained in:
Jack 2024-02-23 14:05:05 -06:00 committed by GitHub
parent 2c564817f1
commit 6278315072
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -30,9 +30,7 @@ declare module 'dom-to-pdf' {
excludeClassNames?: string[];
}
const domToPdf = (
elementToPrint: Element,
options?: Options,
): Promise<any> => {};
function domToPdf(elementToPrint: Element, options?: Options): Promise<any>;
export default domToPdf;
}