Initial release for SPT 3.9

This commit is contained in:
2024-07-20 18:08:38 +02:00
parent 7df25ba694
commit c83da69a3e
713 changed files with 34110 additions and 1 deletions

11
types/utils/CompareUtil.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
export declare class CompareUtil {
private static typesToCheckAgainst;
/**
* This function does an object comparison, equivalent to applying reflections
* and scanning for all possible properties including arrays.
* @param v1 value 1 to compare
* @param v2 value 2 to compare
* @returns true if equal, false if not
*/
recursiveCompare(v1: any, v2: any): boolean;
}