mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-21 08:17:10 +08:00
17 lines
502 B
TypeScript
17 lines
502 B
TypeScript
import type { DatabaseBlockModel } from '@blocksuite/affine-model';
|
|
|
|
export * from './adapters/markdown.js';
|
|
export type { DatabaseOptionsConfig } from './config.js';
|
|
export * from './data-source.js';
|
|
export * from './database-block.js';
|
|
export * from './database-service.js';
|
|
export * from './database-spec.js';
|
|
export { databaseBlockColumns } from './properties/index.js';
|
|
declare global {
|
|
namespace BlockSuite {
|
|
interface BlockModels {
|
|
'affine:database': DatabaseBlockModel;
|
|
}
|
|
}
|
|
}
|