UNPKG

eslint-doc-generator

Version:

Automatic documentation generator for ESLint plugins and rules.

10 lines (9 loc) 472 B
export declare function toSentenceCase(str: string): string; export declare function removeTrailingPeriod(str: string): string; export declare function addTrailingPeriod(str: string): string; /** * Example: FOO => Foo, foo => Foo */ export declare function capitalizeOnlyFirstLetter(str: string): string; export declare function sanitizeMarkdownTable(text: readonly (readonly string[])[]): readonly (readonly string[])[]; export declare function getEndOfLine(): string;