mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-11 14:08:55 +08:00
8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
import type { BlockCommands } from '@blocksuite/block-std';
|
|
|
|
import { insertEdgelessTextCommand } from './insert-edgeless-text.js';
|
|
|
|
export const commands: BlockCommands = {
|
|
insertEdgelessText: insertEdgelessTextCommand,
|
|
};
|