mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 20:16:26 +08:00
4bacfbd640
Close [BS-2793](https://linear.app/affine-design/issue/BS-2793/inline-member)
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;
|
|
}
|
|
}
|