From: susiwen8 Date: Fri, 14 Aug 2020 21:38:32 +0000 (+0800) Subject: chore: remove unecessary 'export' (#1785) X-Git-Tag: v3.0.0-rc.6~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2c6f0c8c73a9d67374a5fc0bdd58ac30518ebb8;p=thirdparty%2Fvuejs%2Fcore.git chore: remove unecessary 'export' (#1785) --- diff --git a/packages/runtime-core/src/devtools.ts b/packages/runtime-core/src/devtools.ts index e7fe1814bf..876c67b048 100644 --- a/packages/runtime-core/src/devtools.ts +++ b/packages/runtime-core/src/devtools.ts @@ -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