22 lines
577 B
TypeScript
22 lines
577 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|
|
|
|
declare module '@wangeditor/editor-for-vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const Editor: DefineComponent<any, any, any>
|
|
const Toolbar: DefineComponent<any, any, any>
|
|
export { Editor, Toolbar }
|
|
}
|
|
|
|
declare module '@wangeditor/editor' {
|
|
export const IDomEditor: any
|
|
export const IEditorConfig: any
|
|
export const createEditor: any
|
|
export const createToolbar: any
|
|
}
|