fix(api.js): Export mocks module (#10044)

This commit is contained in:
Fabian-Lars 2024-06-12 18:22:55 +02:00 committed by GitHub
parent 85889f289b
commit c98f385cb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 20 additions and 13 deletions

View File

@ -0,0 +1,5 @@
---
"@tauri-apps/api": "patch:bug"
---
Export `mocks` module in `@tauri-apps/api` npm package.

File diff suppressed because one or more lines are too long

View File

@ -14,27 +14,29 @@
*/
import * as app from './app'
import * as event from './event'
import * as core from './core'
import * as window from './window'
import * as dpi from './dpi'
import * as event from './event'
import * as image from './image'
import * as menu from './menu'
import * as mocks from './mocks'
import * as path from './path'
import * as tray from './tray'
import * as webview from './webview'
import * as webviewWindow from './webviewWindow'
import * as path from './path'
import * as dpi from './dpi'
import * as tray from './tray'
import * as menu from './menu'
import * as image from './image'
import * as window from './window'
export {
app,
core,
dpi,
event,
image,
menu,
mocks,
path,
core,
window,
tray,
webview,
webviewWindow,
tray,
menu,
image
window
}