You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cudr_slate-collaborative/packages/bridge/src/model/slate.ts

9 lines
205 B

import { Operation, NodeJSON } from 'slate'
import { List } from 'immutable'
export type Operations = List<Operation>
export type SyncNode = NodeJSON
export type Path = List<number>
export { Operation }