DefinitelyTyped/upper-case-first/upper-case-first.d.ts

10 lines
358 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/DefinitelyTyped/DefinitelyTyped
declare module "upper-case-first" {
function upperCaseFirst(string: string): string;
export = upperCaseFirst;
}