UNPKG

cspell-lib

Version:

A library of useful functions used across various cspell tools.

7 lines 371 B
import type { Issue, TextOffset as TextOffsetRW } from '@cspell/cspell-types'; export interface ValidationResult extends TextOffsetRW, Pick<Issue, 'message' | 'issueType' | 'hasPreferredSuggestions' | 'hasSimpleSuggestions'> { line: TextOffsetRW; isFlagged?: boolean | undefined; isFound?: boolean | undefined; } //# sourceMappingURL=ValidationResult.d.ts.map