generated from l-collect/ts-dev-template
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: set max cache with 1000 fix: add onebotV11 (call_api)
- Loading branch information
Showing
36 changed files
with
3,903 additions
and
3,056 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import {createApp} from "vue"; | ||
import { createApp } from "vue"; | ||
import App from "./App.vue"; | ||
createApp(App) | ||
.mount('#app') | ||
createApp(App).mount("#app"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,37 @@ | ||
export interface BotInfo{ | ||
uin:string | ||
status:string | ||
avatar:string | ||
platform:string | ||
nickname:string | ||
dependency:string | ||
urls:string[] | ||
export interface BotInfo { | ||
uin: string; | ||
status: string; | ||
avatar: string; | ||
platform: string; | ||
nickname: string; | ||
dependency: string; | ||
urls: string[]; | ||
} | ||
export type CPUInfo={ | ||
mode:string | ||
speed:number | ||
times:{user:number,irq:number,nice:number,sys:number,idle:number} | ||
|
||
export type CPUInfo = { | ||
mode: string; | ||
speed: number; | ||
times: { user: number; irq: number; nice: number; sys: number; idle: number }; | ||
}; | ||
export interface SystemInfo { | ||
free_memory: number; | ||
node_version: string; | ||
process_cwd: string; | ||
process_id: number; | ||
process_parent_id: number; | ||
process_use_memory: number; | ||
sdk_version: string; | ||
uptime: number; | ||
system_arch: string; | ||
system_cpus: CPUInfo[]; | ||
system_platform: string; | ||
system_uptime: number; | ||
system_version: string; | ||
total_memory: number; | ||
username: string; | ||
} | ||
export interface SystemInfo{ | ||
free_memory:number | ||
node_version:string | ||
process_cwd:string | ||
process_id:number | ||
process_parent_id:number | ||
process_use_memory:number | ||
sdk_version:string | ||
uptime:number | ||
system_arch:string | ||
system_cpus:CPUInfo[] | ||
system_platform:string | ||
system_uptime:number | ||
system_version:string | ||
total_memory:number | ||
username:string | ||
} | ||
export interface AdapterInfo{ | ||
platform:string | ||
config:any, | ||
icon:string | ||
bots:BotInfo[] | ||
export interface AdapterInfo { | ||
platform: string; | ||
config: any; | ||
icon: string; | ||
bots: BotInfo[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ import Theme from 'vitepress/theme' | |
|
||
export default { | ||
...Theme, | ||
} | ||
} |
Oops, something went wrong.