@textlint/types
Version:
Type definition package for textlint
10 lines • 366 B
TypeScript
/**
* `RuleReporterFixCommand` is intermediate object between Rule report and Kernel.
* `IntermediateFixCommand` has also `isAbsolute` flag value.
*/
export interface TextlintRuleContextFixCommand {
text: string;
range: readonly [startIndex: number, endIndex: number];
isAbsolute: boolean;
}
//# sourceMappingURL=TextlintRuleContextFixCommand.d.ts.map