mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-19 07:17:00 +08:00
12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import { RichText } from './rich-text.js';
|
|
|
|
export function effects() {
|
|
customElements.define('rich-text', RichText);
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'rich-text': RichText;
|
|
}
|
|
}
|