DefinitelyTyped/lower-case/lower-case.d.ts
2015-07-29 14:34:47 +01:00

9 lines
337 B
TypeScript

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