]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: remove unecessary 'export' (#1785)
authorsusiwen8 <susiwen8@gmail.com>
Fri, 14 Aug 2020 21:38:32 +0000 (05:38 +0800)
committerGitHub <noreply@github.com>
Fri, 14 Aug 2020 21:38:32 +0000 (17:38 -0400)
packages/runtime-core/src/devtools.ts

index e7fe1814bf83b0819e7321097c3ef97ea87b2c1f..876c67b048db8c07ee58693ac0590ebaf22a0ee7 100644 (file)
@@ -2,7 +2,7 @@ import { App } from './apiCreateApp'
 import { Fragment, Text, Comment, Static } from './vnode'
 import { ComponentInternalInstance } from './component'
 
-export interface AppRecord {
+interface AppRecord {
   id: number
   app: App
   version: string
@@ -17,7 +17,7 @@ const enum DevtoolsHooks {
   COMPONENT_REMOVED = 'component:removed'
 }
 
-export interface DevtoolsHook {
+interface DevtoolsHook {
   emit: (event: string, ...payload: any[]) => void
   on: (event: string, handler: Function) => void
   once: (event: string, handler: Function) => void