This repository has been archived on 2021-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RealtimeDB-OLD/src/database/session.ts
2019-12-01 03:34:25 +01:00

11 lines
236 B
TypeScript

export default class Session {
constructor(private _sessionid: string) { }
get id() {
return this._sessionid;
}
root: boolean = false;
uid: string = undefined;
subscriptions = new Map<string, (() => void)>();
}