mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-01 14:19:40 +08:00
13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
import type { DataViewBlockModel } from './data-view-model.js';
|
|
|
|
export * from './data-view-block.js';
|
|
export * from './data-view-model.js';
|
|
|
|
declare global {
|
|
namespace BlockSuite {
|
|
interface BlockModels {
|
|
'affine:data-view': DataViewBlockModel;
|
|
}
|
|
}
|
|
}
|