mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
import type { ExtensionType } from '@blocksuite/store';
|
|
|
|
import { LinkInlineSpecExtension } from './inline-spec';
|
|
import { linkToolbar } from './toolbar';
|
|
|
|
export const inlineLinkExtensions: ExtensionType[] = [
|
|
LinkInlineSpecExtension,
|
|
linkToolbar,
|
|
];
|