mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-02 06:39:46 +08:00
2b42a75e5a
chore(infra): use finnish notation for observables do rename
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
import { Subject } from 'rxjs';
|
|
|
|
import type { WorkspaceMeta } from '../type';
|
|
|
|
export const workspaceSubjects = {
|
|
meta$: new Subject<{ workspaceId: string; meta: WorkspaceMeta }>(),
|
|
};
|