16 lines
232 B
TypeScript
16 lines
232 B
TypeScript
import type Swal from 'sweetalert2'
|
|
|
|
declare module '#app' {
|
|
interface NuxtApp {
|
|
$swal: typeof Swal
|
|
}
|
|
}
|
|
|
|
declare module 'vue' {
|
|
interface ComponentCustomProperties {
|
|
$swal: typeof Swal
|
|
}
|
|
}
|
|
|
|
export {}
|