Type definitions and tests for snake-case

This commit is contained in:
Sam Saint-Pettersen
2015-08-05 10:18:58 +01:00
parent 3fbe532959
commit ab3767301d
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for snake-case
// Project: https://github.com/blakeembrey/snake-case
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "snake-case" {
function snakeCase(string: string, locale?: string): string;
export = snakeCase;
}