mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
17 lines
323 B
TypeScript
17 lines
323 B
TypeScript
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[]
|
|
}
|