mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-31 14:59:05 +08:00
19 lines
328 B
TypeScript
19 lines
328 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[]
|
|
}
|