mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-02 18:09:58 +08:00
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import type { BlockMeta } from './base.js';
|
|
import { todoMeta } from './todo.js';
|
|
|
|
export const blockMetaMap = {
|
|
todo: todoMeta,
|
|
} satisfies Record<string, BlockMeta>;
|