mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-29 16:19:43 +08:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import { kanbanViewMeta } from './kanban/index.js';
|
|
import { tableViewMeta } from './table/index.js';
|
|
|
|
export * from './convert.js';
|
|
export * from './kanban/index.js';
|
|
export * from './table/index.js';
|
|
|
|
export const viewPresets = {
|
|
tableViewMeta: tableViewMeta,
|
|
kanbanViewMeta: kanbanViewMeta,
|
|
};
|