Skip to content

Commit

Permalink
doc: remove usage of any in TypeScript examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mrleblanc101 authored Dec 21, 2024
1 parent be7430c commit feef9c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/content/2.get-started/1.guide/2.setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ app.use(vfm).mount('#app')
### Nuxt 3

```ts [./plugins/vue-final-modal.ts]
import { createVfm } from 'vue-final-modal'
import { createVfm, type Vfm } from 'vue-final-modal'

export default defineNuxtPlugin((nuxtApp) => {
const vfm = createVfm() as any
const vfm = createVfm() as Vfm

nuxtApp.vueApp.use(vfm)
})
Expand Down
4 changes: 2 additions & 2 deletions docs/content/2.get-started/1.guide/3.migration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ export default defineNuxtPlugin(nuxtApp => {
Will be re-written as this:

```ts [./plugins/vue-final-modal.ts]
import { createVfm } from 'vue-final-modal'
import { createVfm, type Vfm } from 'vue-final-modal'

export default defineNuxtPlugin((nuxtApp) => {
const vfm = createVfm() as any
const vfm = createVfm() as Vfm

nuxtApp.vueApp.use(vfm)
})
Expand Down

0 comments on commit feef9c4

Please sign in to comment.