From c7ff550c12e5569722b2c10efdb5b5b38e644a60 Mon Sep 17 00:00:00 2001 From: whatasoda Date: Thu, 7 Jun 2018 13:32:13 +0900 Subject: [PATCH] Fixed import notation --- types/glob-to-regexp/glob-to-regexp-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/glob-to-regexp/glob-to-regexp-tests.ts b/types/glob-to-regexp/glob-to-regexp-tests.ts index 4234ea3f07..d6918d5f0a 100644 --- a/types/glob-to-regexp/glob-to-regexp-tests.ts +++ b/types/glob-to-regexp/glob-to-regexp-tests.ts @@ -1,4 +1,4 @@ -import * as globToRegExp from 'glob-to-regexp'; +import globToRegExp = require('glob-to-regexp'); let re = globToRegExp("p*uck"); re.test("pot luck"); // true re.test("pluck"); // true