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