Removed type queries used on interface members.

typeof cannot be used on members within an interface.
It is currently permitted due to bug in the TypeScript compiler.
This commit is contained in:
Daniel Rosenwasser
2014-05-09 17:30:48 -07:00
parent 5ae681988a
commit e086199310
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -30,7 +30,6 @@ interface HandlebarsCommon {
logger: Logger;
log(level: number, obj: any): void;
Logger: typeof Logger;
}
interface HandlebarsStatic extends HandlebarsCommon {
+1 -1
View File
@@ -256,7 +256,7 @@ declare module Siesta {
target?: any;
el?: typeof target;
el?: any;
}
}