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