mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-18 00:10:12 -07:00
7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
interface SharingSessionService {
|
|
sharingSessions: SharingSession[];
|
|
createNewSharingSession: () => SharingSession;
|
|
pollForInactiveSessions: () => void;
|
|
getSharingSessionByID: (id: string) => SharingSession;
|
|
}
|