Browse Source

Merge pull request #17469 from gero3/AddUtilsTypes

This adds the defintion file of utils
Mr.doob 5 years ago
parent
commit
9b301daf9a
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/utils.d.ts

+ 2 - 0
src/utils.d.ts

@@ -0,0 +1,2 @@
+export function arrayMin( array: number[] ): number;
+export function arrayMax( array: number[] ): number;