chore: add typings for nuxt context

This commit is contained in:
Andrew Bastin
2022-04-01 21:57:55 +05:30
parent f027d2dd23
commit a8acc3eef8

View File

@@ -0,0 +1,9 @@
import "@nuxt/types/app"
declare module "@nuxt/types/app" {
interface NuxtApp {
$worker: {
createRejexWorker: () => Worker
}
}
}