1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-18 00:10:12 -07:00
deskreen/app/features/SharingSessionsService/SharingSessionsService.ts
2020-09-28 15:28:37 +03:00

7 lines
218 B
TypeScript

interface SharingSessionService {
sharingSessions: SharingSession[];
createNewSharingSession: () => SharingSession;
pollForInactiveSessions: () => void;
getSharingSessionByID: (id: string) => SharingSession;
}