mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
Part of: [BS-2269](https://linear.app/affine-design/issue/BS-2269/%E8%BF%81%E7%A7%BB-database-block-%E5%88%B0-affine-%E6%96%87%E4%BB%B6%E5%A4%B9%E4%B8%8B%E5%B9%B6%E5%BC%80%E5%90%AF-nouncheckedindexedaccess)
7 lines
270 B
TypeScript
7 lines
270 B
TypeScript
import type { MenuOptions } from '@blocksuite/affine-components/context-menu';
|
|
import { type DatabaseBlockModel } from '@blocksuite/affine-model';
|
|
|
|
export interface DatabaseOptionsConfig {
|
|
configure: (model: DatabaseBlockModel, options: MenuOptions) => MenuOptions;
|
|
}
|