mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-07 09:21:24 +08:00
14 lines
398 B
TypeScript
14 lines
398 B
TypeScript
import type * as NoteType from '@blocksuite/affine-block-note/effects';
|
|
import type * as CommandsType from '@blocksuite/affine-shared/commands';
|
|
import type * as RemarkMathType from 'remark-math';
|
|
|
|
export * from './adapters';
|
|
export * from './latex-block';
|
|
export * from './latex-spec';
|
|
|
|
// Global types
|
|
declare type _GLOBAl =
|
|
| typeof NoteType
|
|
| typeof CommandsType
|
|
| typeof RemarkMathType;
|