mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-12 15:46:29 +08:00
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
import type { Awareness } from 'y-protocols/awareness';
|
|
|
|
export interface AwarenessSource {
|
|
connect(awareness: Awareness): void;
|
|
disconnect(): void;
|
|
}
|