mirror of
https://github.com/archtechx/airwire-demo.git
synced 2025-12-12 08:34:03 +00:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|
|
|
|
declare module '@heroicons/*';
|
|
|
|
interface Window {
|
|
notify(notification: string): void;
|
|
}
|