soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
369 Bytes
import type { AppRecordOptions } from './app-record'
export interface DevtoolsHook {
emit: (event: string, ...payload: any[]) => void
on: <T extends Function>(event: string, handler: T) => void
once: <T extends Function>(event: string, handler: T) => void
off: <T extends Function>(event?: string, handler?: T) => void
Vue?: any
apps: AppRecordOptions[]
}