DefinitelyTyped/upper-case-first/upper-case-first.d.ts
2015-08-21 14:35:27 +01:00

10 lines
354 B
TypeScript

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