Files
AFFiNE-Mirror/blocksuite/affine/gfx/group/src/effects.ts
T
2025-03-24 15:34:38 +09:00

15 lines
325 B
TypeScript

import { EdgelessGroupTitleEditor } from './text/edgeless-group-title-editor';
export function effects() {
customElements.define(
'edgeless-group-title-editor',
EdgelessGroupTitleEditor
);
}
declare global {
interface HTMLElementTagNameMap {
'edgeless-group-title-editor': EdgelessGroupTitleEditor;
}
}