Create is-lower-case.d.ts

This commit is contained in:
Sam Saint-Pettersen 2015-07-28 12:59:10 +01:00
parent 6030134083
commit 2b7f8b7edc

9
is-lower-case/is-lower-case.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
// Type definitions for is-lower-case
// Project: https://github.com/blakeembrey/is-lower-case
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "is-lower-case" {
function isLowerCase(string: string): boolean;
export = isLowerCase;
}