mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 20:16:26 +08:00
15 lines
325 B
TypeScript
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;
|
|
}
|
|
}
|