chore: type

This commit is contained in:
手瓜一十雪
2024-08-09 10:42:03 +08:00
parent 024faa2561
commit 9fc9ed805c
6 changed files with 44 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
import { SelfInfo } from "./user"
export interface LineDevice {
instanceId: number
clientType: number
devUid: string
}
export interface OBLineDevice {
app_id: string;
device_name: string;
device_kind: string;
}
export interface CoreCache {
selfInfo: SelfInfo,
DeviceList: OBLineDevice[]
}