Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / docs-core / lib / Services / Websockets / Debouncer / DocumentDebounceMode.ts
blob9ce8174404c44bcc8eb98a6f692f9fdb4090d720
1 export enum DocumentDebounceMode {
2   /** Realtime mode means multiple people are in the document and changes should be propagated as soon as possible */
3   Realtime = 'Realtime',
4   /** In singleplayer, the user is alone in the doc and we don't have to be as fast in saving */
5   SinglePlayer = 'SinglePlayer',