mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-09 05:05:52 +08:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import { AffineText } from './nodes/affine-text';
|
|
|
|
export function effects() {
|
|
customElements.define('affine-text', AffineText);
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'affine-text': AffineText;
|
|
}
|
|
}
|