@multiplayer-app/session-recorder-node
Version:
Multiplayer Fullstack Session Recorder for Node.js
27 lines • 647 B
TypeScript
export interface ISession {
_id?: string;
shortId?: string;
name?: string;
resourceAttributes?: {
browserInfo?: string;
cookiesEnabled?: string;
deviceInfo?: string;
hardwareConcurrency?: string;
osInfo?: string;
pixelRatio?: string;
screenSize?: string;
} & any;
sessionAttributes?: {
userEmail?: string;
userId?: string;
userName?: string;
accountId?: string;
accountName?: string;
comment?: string;
} & any;
tags?: {
key?: string;
value: string;
}[];
}
//# sourceMappingURL=types.d.ts.map