mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-25 18:26:05 +08:00
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import { Subject } from 'rxjs';
|
|
|
|
export const dbSubjects = {
|
|
externalUpdate$: new Subject<{
|
|
workspaceId: string;
|
|
update: Uint8Array;
|
|
docId?: string;
|
|
}>(),
|
|
};
|