DefinitelyTyped/upper-case/upper-case.d.ts
2015-08-18 19:04:19 +01:00

10 lines
340 B
TypeScript

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