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