UNPKG

cspell-lib

Version:

A library of useful functions used across various cspell tools.

16 lines 462 B
export function toValidationIssueRPC(issue) { const { text, length, offset, message, issueType, hasPreferredSuggestions, hasSimpleSuggestions, isFlagged, isFound, suggestionsEx, } = issue; return { text, offset, length, message, issueType, hasPreferredSuggestions, hasSimpleSuggestions, isFlagged, isFound, suggestionsEx, }; } //# sourceMappingURL=ValidationIssue.js.map