1
0
Fork 0
mirror of https://github.com/archtechx/airwire-demo.git synced 2025-12-12 00:24:03 +00:00
airwire-demo/resources/js/types.d.ts
2021-05-21 18:38:26 +02:00

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;
}