From 712b9068033dc6708f17cb526af2bfc4f4f125f5 Mon Sep 17 00:00:00 2001 From: Sam Saint-Pettersen Date: Fri, 21 Aug 2015 14:35:27 +0100 Subject: [PATCH] Type definitions and tests for upper-case-first --- upper-case-first/upper-case-first.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 upper-case-first/upper-case-first.d.ts diff --git a/upper-case-first/upper-case-first.d.ts b/upper-case-first/upper-case-first.d.ts new file mode 100644 index 000000000..21af3d676 --- /dev/null +++ b/upper-case-first/upper-case-first.d.ts @@ -0,0 +1,9 @@ +// 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; +}