cspell-lib
Version:
A library of useful functions used across various cspell tools.
7 lines • 323 B
TypeScript
import type { ExtendedSuggestion } from './Suggestion.js';
import type { ValidationResult } from './ValidationResult.js';
export interface ValidationIssue extends ValidationResult {
suggestions?: string[] | undefined;
suggestionsEx?: ExtendedSuggestion[] | undefined;
}
//# sourceMappingURL=ValidationIssue.d.ts.map