chore(sfc-playground): use standalone version of @vue/repl
This commit is contained in:
13
packages/global.d.ts
vendored
13
packages/global.d.ts
vendored
@@ -1,3 +1,5 @@
|
||||
/// <reference types="vite/client" />
|
||||
|
||||
// Global compile-time constants
|
||||
declare var __DEV__: boolean
|
||||
declare var __TEST__: boolean
|
||||
@@ -25,10 +27,6 @@ declare namespace jest {
|
||||
}
|
||||
|
||||
declare module '*.vue' {}
|
||||
declare module '*?raw' {
|
||||
const content: string
|
||||
export default content
|
||||
}
|
||||
|
||||
declare module 'file-saver' {
|
||||
export function saveAs(blob: any, name: any): void
|
||||
@@ -39,3 +37,10 @@ declare module 'stream/web' {
|
||||
const t: typeof TransformStream
|
||||
export { r as ReadableStream, t as TransformStream }
|
||||
}
|
||||
|
||||
declare module '@vue/repl' {
|
||||
import { ComponentOptions } from '@vue/runtime-core'
|
||||
const Repl: ComponentOptions
|
||||
const ReplStore: any
|
||||
export { Repl, ReplStore }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user