Merge pull request #3178 from steveluscher/patch-2

Correct type annotation for `shouldPrintComment`
This commit is contained in:
Henry Zhu 2015-12-17 14:17:35 -05:00
commit 8ea45fb0e0

View File

@ -34,7 +34,7 @@ export class CodeGenerator extends Printer {
}
format: {
shouldPrintComment: boolean;
shouldPrintComment: (comment: string) => boolean;
retainLines: boolean;
comments: boolean;
auxiliaryCommentBefore: string;