Browse Source

Merge pull request #19577 from linbingquan/dev-cleanup-ts

TS: clean up.
Mr.doob 5 years ago
parent
commit
5d8208f8fe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/jsm/libs/stats.module.d.ts

+ 1 - 1
examples/jsm/libs/stats.module.d.ts

@@ -18,7 +18,7 @@ declare namespace Stats {
 		update( value: number, maxValue: number ): void;
 	}
 
-	function Panel(name?: string, fg?: string, bg?: string): Panel;
+	function Panel( name?: string, fg?: string, bg?: string ): Panel;
 }
 
 export default Stats;