mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
import { AffineMention } from './affine-mention';
|
|
|
|
export function effects() {
|
|
customElements.define('affine-mention', AffineMention);
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'affine-mention': AffineMention;
|
|
}
|
|
}
|