We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44448fd commit a2c6f0cCopy full SHA for a2c6f0c
packages/runtime-core/src/devtools.ts
@@ -2,7 +2,7 @@ import { App } from './apiCreateApp'
2
import { Fragment, Text, Comment, Static } from './vnode'
3
import { ComponentInternalInstance } from './component'
4
5
-export interface AppRecord {
+interface AppRecord {
6
id: number
7
app: App
8
version: string
@@ -17,7 +17,7 @@ const enum DevtoolsHooks {
17
COMPONENT_REMOVED = 'component:removed'
18
}
19
20
-export interface DevtoolsHook {
+interface DevtoolsHook {
21
emit: (event: string, ...payload: any[]) => void
22
on: (event: string, handler: Function) => void
23
once: (event: string, handler: Function) => void
0 commit comments