Files
web/types/requests/preamble.ts
2024-05-06 13:44:22 +02:00

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
}
}