11 lines
231 B
TypeScript
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
|
|
}
|
|
}
|