mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
import { Subject } from 'rxjs';
|
|
|
|
import type { WorkspaceMeta } from '../type';
|
|
|
|
export const workspaceSubjects = {
|
|
meta: new Subject<{ workspaceId: string; meta: WorkspaceMeta }>(),
|
|
};
|