Blame view

天文台pc/tianwentai-ui/node_modules/fast-equals/dist/cjs/equals.d.cts 2.24 KB
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  import type { Dictionary, PrimitiveWrapper, State, TypedArray } from './internalTypes.d.cts';
  import type { sameValueZeroEqual } from './utils.d.cts';
  /**
   * Whether the array buffers are equal in value.
   */
  export declare function areArrayBuffersEqual(a: ArrayBuffer, b: ArrayBuffer): boolean;
  /**
   * Whether the arrays are equal in value.
   */
  export declare function areArraysEqual(a: any[], b: any[], state: State<any>): boolean;
  /**
   * Whether the dataviews are equal in value.
   */
  export declare function areDataViewsEqual(a: DataView, b: DataView): boolean;
  /**
   * Whether the dates passed are equal in value.
   */
  export declare function areDatesEqual(a: Date, b: Date): boolean;
  /**
   * Whether the errors passed are equal in value.
   */
  export declare function areErrorsEqual(a: Error, b: Error): boolean;
  /**
   * Whether the functions passed are equal in value.
   */
  export declare function areFunctionsEqual(a: (...args: any[]) => any, b: (...args: any[]) => any): boolean;
  /**
   * Whether the `Map`s are equal in value.
   */
  export declare function areMapsEqual(a: Map<any, any>, b: Map<any, any>, state: State<any>): boolean;
  /**
   * Whether the numbers are equal in value.
   */
  export declare const areNumbersEqual: typeof sameValueZeroEqual;
  /**
   * Whether the objects are equal in value.
   */
  export declare function areObjectsEqual(a: Dictionary, b: Dictionary, state: State<any>): boolean;
  /**
   * Whether the objects are equal in value with strict property checking.
   */
  export declare function areObjectsEqualStrict(a: Dictionary, b: Dictionary, state: State<any>): boolean;
  /**
   * Whether the primitive wrappers passed are equal in value.
   */
  export declare function arePrimitiveWrappersEqual(a: PrimitiveWrapper, b: PrimitiveWrapper): boolean;
  /**
   * Whether the regexps passed are equal in value.
   */
  export declare function areRegExpsEqual(a: RegExp, b: RegExp): boolean;
  /**
   * Whether the `Set`s are equal in value.
   */
  export declare function areSetsEqual(a: Set<any>, b: Set<any>, state: State<any>): boolean;
  /**
   * Whether the TypedArray instances are equal in value.
   */
  export declare function areTypedArraysEqual(a: TypedArray, b: TypedArray): boolean;
  /**
   * Whether the URL instances are equal in value.
   */
  export declare function areUrlsEqual(a: URL, b: URL): boolean;