mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-22 08:47:10 +08:00
12 lines
244 B
TypeScript
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;
|
|
}
|
|
}
|