Fix return type of PullDecl.isRootDecl: void -> boolean

This commit is contained in:
Zalim Bashorov
2014-08-01 16:26:37 +04:00
parent 8b077e4f05
commit 4c10428587
+2 -2
View File
@@ -5640,7 +5640,7 @@ declare module TypeScript {
public hasBeenBound(): boolean;
public isSynthesized(): boolean;
public ast(): AST;
public isRootDecl(): void;
public isRootDecl(): boolean;
}
class RootPullDecl extends PullDecl {
private _isExternalModule;
@@ -9317,4 +9317,4 @@ declare module TypeScript.Services {
declare module 'typescript-services' {
export = TypeScript;
}
}