mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-12 15:46:29 +08:00
205cd7a86d
Closes: BS-2946
11 lines
358 B
TypeScript
11 lines
358 B
TypeScript
import type { ServiceIdentifier } from '@blocksuite/global/di';
|
|
|
|
import { LifeCycleWatcherIdentifier } from '../identifier.js';
|
|
import type { GfxController } from './controller.js';
|
|
|
|
export const gfxControllerKey = 'GfxController';
|
|
|
|
export const GfxControllerIdentifier = LifeCycleWatcherIdentifier(
|
|
gfxControllerKey
|
|
) as ServiceIdentifier<GfxController>;
|