mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-24 05:48:59 +08:00
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
export { createLitPortal, createSimplePortal } from './helper.js';
|
|
export { Portal } from './portal.js';
|
|
export type * from './types.js';
|
|
|
|
import { Portal } from './portal.js';
|
|
|
|
export function effects() {
|
|
customElements.define('blocksuite-portal', Portal);
|
|
}
|