| Index: lib/declaration.ts
|
| diff --git a/lib/declaration.ts b/lib/declaration.ts
|
| index 1c3bd2427c0e87881447afa6d42edac21dc560fc..c20d62b8067a1d42a168e781bdf492e994e06652 100644
|
| --- a/lib/declaration.ts
|
| +++ b/lib/declaration.ts
|
| @@ -22,8 +22,12 @@ export default class DeclarationTranspiler extends base.TranspilerBase {
|
|
|
| static NUM_FAKE_REST_PARAMETERS = 5;
|
|
|
| - setTypeChecker(tc: ts.TypeChecker) { this.tc = tc; }
|
| - setFacadeConverter(fc: FacadeConverter) { this.fc = fc; }
|
| + setTypeChecker(tc: ts.TypeChecker) {
|
| + this.tc = tc;
|
| + }
|
| + setFacadeConverter(fc: FacadeConverter) {
|
| + this.fc = fc;
|
| + }
|
|
|
| getJsPath(node: ts.Node, suppressUnneededPaths = true): string {
|
| let path: Array<String> = [];
|
|
|