UNPKG

363 BJavaScriptView Raw
1export default {
2 get name() {
3 return 'ExponentPrint';
4 },
5 get Orientation() {
6 return {
7 portrait: 'portrait',
8 landscape: 'landscape',
9 };
10 },
11 async print() {
12 window.print();
13 },
14 async printToFileAsync() {
15 window.print();
16 },
17};
18//# sourceMappingURL=ExponentPrint.web.js.map
\No newline at end of file