/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TextFormat } from './TextFormat'; export interface TextFormatRun { /** * The character index where this run starts. */ startIndex: number; /** * The format of this run. Absent values inherit the cell's format. */ format: TextFormat; } //# sourceMappingURL=TextFormatRun.d.ts.map