mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
11 lines
332 B
TypeScript
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);
|
|
}
|