Type definitions and tests for sentence-case

This commit is contained in:
Sam Saint-Pettersen
2015-08-04 17:03:37 +01:00
parent 471c254078
commit 05a1465f2c
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for sentence-case
// Project: https://github.com/blakeembrey/sentence-case
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "sentence-case" {
function sentenceCase(string: string, locale?: string, repl?: string): string;
export = sentenceCase;
}