mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
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>;
|