Files
AFFiNE-Mirror/blocksuite/affine/blocks/block-list/src/effects.ts
2025-03-08 12:00:34 +08:00

12 lines
244 B
TypeScript

import { ListBlockComponent } from './list-block.js';
export function effects() {
customElements.define('affine-list', ListBlockComponent);
}
declare global {
interface HTMLElementTagNameMap {
'affine-list': ListBlockComponent;
}
}