window_print.js 364 B

1234567891011121314151617
  1. // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
  2. // SPDX-License-Identifier: Apache-2.0
  3. // SPDX-License-Identifier: MIT
  4. window.print = function () {
  5. return window.__TAURI_INVOKE__('tauri', {
  6. __tauriModule: 'Window',
  7. message: {
  8. cmd: 'manage',
  9. data: {
  10. cmd: {
  11. type: 'print'
  12. }
  13. }
  14. }
  15. })
  16. }