From 89eaf81496522fc45b0b20ca45e737490d2d729f Mon Sep 17 00:00:00 2001 From: Igor Oleinikov Date: Tue, 24 Jun 2014 01:16:29 +0400 Subject: [PATCH] Added AMD module definitions for ix.js. --- ix.js/ix.d.ts | 4 ++++ ix.js/l2o.d.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ix.js/ix.d.ts b/ix.js/ix.d.ts index ebd5b160b4..f49a72d3d5 100644 --- a/ix.js/ix.d.ts +++ b/ix.js/ix.d.ts @@ -111,3 +111,7 @@ declare module Ix { forIn(source: Enumerable, resultSelector: EnumerableFunc): Enumerable; } } + +declare module "ix" { + export = Ix; +} \ No newline at end of file diff --git a/ix.js/l2o.d.ts b/ix.js/l2o.d.ts index f50d3369d5..3e101a662e 100644 --- a/ix.js/l2o.d.ts +++ b/ix.js/l2o.d.ts @@ -251,3 +251,7 @@ declare module Ix { var Enumerable: EnumerableStatic; } + +declare module "l2o" { + export = Ix; +}