mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-20 19:42:04 +08:00
17 lines
619 B
TypeScript
17 lines
619 B
TypeScript
import { EmbedCardEditCaptionEditModal } from './embed-card-caption-edit-modal';
|
|
import { EmbedCardCreateModal } from './embed-card-create-modal';
|
|
import { EmbedCardEditModal } from './embed-card-edit-modal';
|
|
|
|
export * from './embed-card-caption-edit-modal';
|
|
export * from './embed-card-create-modal';
|
|
export * from './embed-card-edit-modal';
|
|
|
|
export function effects() {
|
|
customElements.define(
|
|
'embed-card-caption-edit-modal',
|
|
EmbedCardEditCaptionEditModal
|
|
);
|
|
customElements.define('embed-card-create-modal', EmbedCardCreateModal);
|
|
customElements.define('embed-card-edit-modal', EmbedCardEditModal);
|
|
}
|