Files
DefinitelyTyped/lower-case-first/lower-case-first.d.ts
2015-07-30 10:49:11 +01:00

9 lines
368 B
TypeScript

// Type definitions for lower-case-first
// Project: https://github.com/blakeembrey/lower-case-first
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "lower-case-first" {
function lowerCaseFirst(string: string, locale?: string): string;
export = lowerCaseFirst;
}