import type { CommentRangeEnd } from "./CommentRangeEnd"; import type { CommentRangeStart } from "./CommentRangeStart"; import type { Delete } from "./Delete"; import type { Run } from "./Run"; export type InsertChild = { "Run": Run; } | { "Delete": Delete; } | { "CommentStart": CommentRangeStart; } | { "CommentEnd": CommentRangeEnd; };