11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import type { RTEDocument } from "../rte/node"
|
|
import type { Embeds } from "./embeds"
|
|
import type { EdgesWithTotalCount } from "./utils/edges"
|
|
|
|
export type Preamble = {
|
|
text: {
|
|
embedded_itemsConnection: EdgesWithTotalCount<Embeds>
|
|
json: RTEDocument
|
|
}
|
|
}
|