mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-10 08:58:15 +08:00
🏷️ fix(json): 更正 type
This commit is contained in:
14
src/vite-env.d.ts
vendored
14
src/vite-env.d.ts
vendored
@@ -2,7 +2,7 @@
|
||||
* @file vite-env.d.ts
|
||||
* @description vite-env.d.ts
|
||||
* @author BTMuli<bt-muli@outlook.com>
|
||||
* @since Alpha v0.1.2
|
||||
* @since Alpha v0.1.3
|
||||
*/
|
||||
|
||||
declare module "*.vue" {
|
||||
@@ -11,8 +11,18 @@ declare module "*.vue" {
|
||||
export default component;
|
||||
}
|
||||
|
||||
/**
|
||||
* @description vue-json-viewer
|
||||
* @package vue-json-viewer
|
||||
* @version 3.0.4
|
||||
* @todo 仅声明了用到的属性
|
||||
*/
|
||||
declare module "vue-json-viewer" {
|
||||
import type { DefineComponent } from "vue";
|
||||
const component: DefineComponent<object, object, any>;
|
||||
const component: DefineComponent<{
|
||||
value: any
|
||||
copyable: boolean
|
||||
boxed: boolean
|
||||
}>;
|
||||
export default component;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user