File size: 369 Bytes
4d70170 |
1 2 3 4 5 6 7 8 9 10 11 |
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[]
}
|