mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 13:25:12 +00:00
16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
import type { SurfaceRefBlockModel } from '@blocksuite/affine-model';
|
|
import { BlockComponent } from '@blocksuite/block-std';
|
|
import { nothing } from 'lit';
|
|
|
|
export class EdgelessSurfaceRefBlockComponent extends BlockComponent<SurfaceRefBlockModel> {
|
|
override render() {
|
|
return nothing;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'affine-edgeless-surface-ref': EdgelessSurfaceRefBlockComponent;
|
|
}
|
|
}
|