openpencil/src/env.d.ts
2026-04-01 21:27:04 +03:00

12 lines
369 B
TypeScript

/// <reference types="vite/client" />
/// <reference types="vite-plugin-pwa/vanillajs" />
/// <reference types="unplugin-icons/types/vue" />
declare const __OPENPENCIL_LOCAL_AUTOMATION_TOKEN__: string | null
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<object, object, unknown>
export default component
}