From e142871cb2cd8b98465117077302272aaeeed3a8 Mon Sep 17 00:00:00 2001 From: Artem Kozlov Date: Fri, 23 Oct 2015 23:40:34 +0200 Subject: [PATCH] openlayers. Add named external module. Enables usage of the module in imports. --- openlayers/openlayers.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openlayers/openlayers.d.ts b/openlayers/openlayers.d.ts index 89680ac91..c81a42084 100644 --- a/openlayers/openlayers.d.ts +++ b/openlayers/openlayers.d.ts @@ -4368,3 +4368,7 @@ declare module ol { */ interface TransformFunction { (input: Array, output?: Array, dimension?: number): Array } } + +declare module "openlayers" { + export = ol; +}