Move Map to types to ensure it is visible in definition files

This commit is contained in:
Mohamed Hegazy 2014-12-07 21:22:22 -08:00 committed by Daniel Rosenwasser
parent 523c1795b8
commit fc950ed930
2 changed files with 3 additions and 4 deletions

View File

@ -15,10 +15,6 @@ module ts {
True = -1
}
export interface Map<T> {
[index: string]: T;
}
export const enum Comparison {
LessThan = -1,
EqualTo = 0,

View File

@ -1,6 +1,9 @@
/// <reference path="core.ts"/>
module ts {
export interface Map<T> {
[index: string]: T;
}
export interface TextRange {
pos: number;