mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
import { getImageSelectionsCommand } from '@blocksuite/affine-shared/commands';
|
|
import type { BlockCommands } from '@blocksuite/block-std';
|
|
|
|
import { insertImagesCommand } from './insert-images.js';
|
|
|
|
export const commands: BlockCommands = {
|
|
getImageSelections: getImageSelectionsCommand,
|
|
insertImages: insertImagesCommand,
|
|
};
|