import type { InstrHyperlink } from "./InstrHyperlink"; import type { InstrPAGEREF } from "./InstrPAGEREF"; import type { InstrTC } from "./InstrTC"; import type { InstrToC } from "./InstrToC"; export type InstrText = { "TOC": InstrToC; } | { "TC": InstrTC; } | { "PAGEREF": InstrPAGEREF; } | { "HYPERLINK": InstrHyperlink; } | { "Unsupported": string; };