Fix various lint errors (#15530)

This commit is contained in:
Andy
2017-03-30 17:42:07 -07:00
committed by GitHub
parent 51430746a2
commit f2b6506ba5
51 changed files with 517 additions and 573 deletions

View File

@@ -8,7 +8,7 @@ declare namespace stringifyObject { }
declare function stringifyObject(o: any, options?: {
indent?: string,
singleQuotes?: boolean,
filter?: (o: any, prop: string) => boolean,
filter?(o: any, prop: string): boolean,
inlineCharacterLimit?: number
}): string;