UNPKG

eslint-plugin-complete

Version:

An ESLint plugin that contains useful rules.

9 lines 413 B
export type CompleteSentenceMessageIds = "missingCapital" | "missingPeriod" | "doublePeriod"; interface IncompleteSentence { sentence: string; messageId: CompleteSentenceMessageIds; } export declare function getIncompleteSentences(text: string): readonly IncompleteSentence[]; export declare function getSentences(text: string): readonly string[]; export {}; //# sourceMappingURL=completeSentence.d.ts.map