Files
web-temp/layers/types/Common.ts
2025-10-02 17:34:41 +09:00

11 lines
231 B
TypeScript

import type { HTMLAttributes } from 'vue'
import type { StoveJsService } from '@/layers/types/Stove'
export type ClassType = HTMLAttributes['class']
declare global {
interface Window {
stoveJsService?: StoveJsService
}
}