mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-18 10:36:22 +08:00
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
import { AFFINE_TOOLBAR_WIDGET, AffineToolbarWidget } from './toolbar';
|
|
|
|
export function effects() {
|
|
customElements.define(AFFINE_TOOLBAR_WIDGET, AffineToolbarWidget);
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
[AFFINE_TOOLBAR_WIDGET]: AffineToolbarWidget;
|
|
}
|
|
}
|