import type { AppRecordOptions } from './app-record' export interface DevtoolsHook { emit: (event: string, ...payload: any[]) => void on: (event: string, handler: T) => void once: (event: string, handler: T) => void off: (event?: string, handler?: T) => void Vue?: any apps: AppRecordOptions[] }