sprof 0.0.160 → 0.0.162

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,4 +15,6 @@ export default class Classes {
15
15
  static GetPropertyName<T extends ClassType>(obj: Constructable<T>): T;
16
16
  static InitClassInstance(passedClass: ClassType, arg?: ClassType): ClassType;
17
17
  static ExistsWithId(arr: IWithId[], id?: string): boolean;
18
+ static DeepMap(fn: (...args: any) => any): any;
19
+ static DeepTrim<T>(obj: T): any;
18
20
  }
@@ -14,4 +14,5 @@ export default abstract class Strings {
14
14
  static ContainsNum(str: string): boolean;
15
15
  static JoinSnake(...str: string[]): string;
16
16
  static GetDynamicCountName(array: Array<unknown>, titles: string[]): string;
17
+ static TrimText(data: unknown): unknown;
17
18
  }