cspell-lib
Version:
A library of useful functions used across various cspell tools.
8 lines • 431 B
TypeScript
import type { ImportFileRef } from '@cspell/cspell-types';
import type { CSpellSettingsWST } from './types.js';
export declare function extractImportErrors(settings: CSpellSettingsWST): ImportFileRefWithError[];
export declare function extractImports(settings: CSpellSettingsWST): ImportFileRef[];
export interface ImportFileRefWithError extends ImportFileRef {
error: Error;
}
//# sourceMappingURL=extractImportErrors.d.ts.map