@cspell/cspell-tools
Version:
Tools to assist with the development of cSpell
20 lines • 657 B
TypeScript
export interface WordsCollection {
size: number;
has(words: string, caseSensitive: boolean): boolean;
type?: string;
}
/**
* Collection of words to be allowed after splitting.
*/
export interface AllowedSplitWordsCollection extends WordsCollection {
type?: 'AllowedSplitWordsCollection';
}
export declare const defaultAllowedSplitWords: AllowedSplitWordsCollection;
/**
* Collection of words to be excluded.
*/
export interface ExcludeWordsCollection extends WordsCollection {
type?: 'ExcludeWordsCollection';
}
export declare const defaultExcludeWordsCollection: ExcludeWordsCollection;
//# sourceMappingURL=WordsCollection.d.ts.map