mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-18 18:46:19 +08:00
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
import { BlockViewExtension, type ExtensionType } from '@blocksuite/block-std';
|
|
import { literal } from 'lit/static-html.js';
|
|
|
|
export const FrameBlockSpec: ExtensionType[] = [
|
|
BlockViewExtension('affine:frame', literal`affine-frame`),
|
|
];
|