mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-20 19:42:04 +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;
|
|
}
|
|
}
|