chore: remove unecessary 'export' (#1785)
This commit is contained in:
parent
44448fdd22
commit
a2c6f0c8c7
@ -2,7 +2,7 @@ import { App } from './apiCreateApp'
|
|||||||
import { Fragment, Text, Comment, Static } from './vnode'
|
import { Fragment, Text, Comment, Static } from './vnode'
|
||||||
import { ComponentInternalInstance } from './component'
|
import { ComponentInternalInstance } from './component'
|
||||||
|
|
||||||
export interface AppRecord {
|
interface AppRecord {
|
||||||
id: number
|
id: number
|
||||||
app: App
|
app: App
|
||||||
version: string
|
version: string
|
||||||
@ -17,7 +17,7 @@ const enum DevtoolsHooks {
|
|||||||
COMPONENT_REMOVED = 'component:removed'
|
COMPONENT_REMOVED = 'component:removed'
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DevtoolsHook {
|
interface DevtoolsHook {
|
||||||
emit: (event: string, ...payload: any[]) => void
|
emit: (event: string, ...payload: any[]) => void
|
||||||
on: (event: string, handler: Function) => void
|
on: (event: string, handler: Function) => void
|
||||||
once: (event: string, handler: Function) => void
|
once: (event: string, handler: Function) => void
|
||||||
|
Loading…
Reference in New Issue
Block a user