Files
AFFiNE-Mirror/blocksuite/affine/components/src/caption/index.ts
2024-12-20 15:38:06 +08:00

11 lines
332 B
TypeScript

import { BlockCaptionEditor } from './block-caption.js';
export { BlockCaptionEditor, type BlockCaptionProps } from './block-caption.js';
export {
CaptionedBlockComponent,
SelectedStyle,
} from './captioned-block-component.js';
export function effects() {
customElements.define('block-caption-editor', BlockCaptionEditor);
}