Skip to content

Commit a2c6f0c

Browse files
authored
chore: remove unecessary 'export' (#1785)
1 parent 44448fd commit a2c6f0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/runtime-core/src/devtools.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { App } from './apiCreateApp'
22
import { Fragment, Text, Comment, Static } from './vnode'
33
import { ComponentInternalInstance } from './component'
44

5-
export interface AppRecord {
5+
interface AppRecord {
66
id: number
77
app: App
88
version: string
@@ -17,7 +17,7 @@ const enum DevtoolsHooks {
1717
COMPONENT_REMOVED = 'component:removed'
1818
}
1919

20-
export interface DevtoolsHook {
20+
interface DevtoolsHook {
2121
emit: (event: string, ...payload: any[]) => void
2222
on: (event: string, handler: Function) => void
2323
once: (event: string, handler: Function) => void

0 commit comments

Comments
 (0)