-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproxyequal.d.ts
49 lines (43 loc) · 1.44 KB
/
proxyequal.d.ts
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
declare module 'proxyequal' {
interface ProxyStateResult<T> {
state: T,
affected: string[],
reset: () => void,
replaceState(state: T): ProxyStateResult<T>
}
/**
* Wraps state with traps
* @param {T} state - the "state" object
* @return {{state: T; affected: string[]}}
*/
export function proxyState<T>(state: T): ProxyStateResult<T>;
/**
* Test is left equal to the right on variable-value level
* @param {T} left Object 1
* @param {T} right Object 2
* @param {string[]} affected, list of affected keys to compare
* @return {boolean}
* @example
* proxyEqual({a:1,b:2},{a:1,c:2},['.a']) => true
* proxyShallow({a:1,b:2},{a:1,c:2},['.a']) => false
*/
export function proxyEqual<T>(left: T, right: T, affected: string[]): boolean;
/**
* Test is left `shallow` equal to the right on object-instance level
* @param {T} left Object 1
* @param {T} right Object 2
* @param {string[]} affected, list of affected keys to compare
* @return {boolean}
* @example
* const A = {}
* proxyEqual({a:A,b:2},{a:A,c:2},['.a']) => true
* proxyShallow({a:A,b:2},{a:A,c:2},['.a']) => true
*/
export function proxyShallow<T>(left: T, right: T, affected: string[]): boolean;
/**
* de-proxifies object
* @param {T} source
* @return {T}
*/
export function deproxify<T>(source: T): T;
}