mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-04 19:15:33 +08:00
14 lines
302 B
TypeScript
14 lines
302 B
TypeScript
import { DropIndicator } from './drop-indicator';
|
|
export {
|
|
type DropProps,
|
|
FileDropConfigExtension,
|
|
FileDropExtension,
|
|
type FileDropOptions,
|
|
} from './file-drop-manager';
|
|
|
|
export { DropIndicator };
|
|
|
|
export function effects() {
|
|
customElements.define('affine-drop-indicator', DropIndicator);
|
|
}
|