mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-18 08:20:10 -07:00
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
interface Device {
|
|
id: string;
|
|
sharingSessionID: string;
|
|
deviceOS: string;
|
|
deviceType: string;
|
|
deviceIP: string;
|
|
deviceBrowser: string;
|
|
deviceScreenWidth: number;
|
|
deviceScreenHeight: number;
|
|
}
|