mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-20 03:26:47 +08:00
21 lines
480 B
TypeScript
21 lines
480 B
TypeScript
import {
|
|
EdgelessBuiltInSpecs,
|
|
PageRootBlockSpec,
|
|
} from '@blocksuite/affine-block-root';
|
|
import type { ExtensionType } from '@blocksuite/store';
|
|
|
|
import {
|
|
EdgelessFirstPartyBlockSpecs,
|
|
PageFirstPartyBlockSpecs,
|
|
} from './common';
|
|
|
|
export const EdgelessEditorBlockSpecs: ExtensionType[] = [
|
|
EdgelessBuiltInSpecs,
|
|
EdgelessFirstPartyBlockSpecs,
|
|
].flat();
|
|
|
|
export const PageEditorBlockSpecs: ExtensionType[] = [
|
|
PageRootBlockSpec,
|
|
PageFirstPartyBlockSpecs,
|
|
].flat();
|