mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-22 04:26:23 +08:00
8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import { AffineLink } from './link-node/affine-link';
|
|
import { LinkPopup } from './link-node/link-popup/link-popup';
|
|
|
|
export function effects() {
|
|
customElements.define('link-popup', LinkPopup);
|
|
customElements.define('affine-link', AffineLink);
|
|
}
|