ag-reactive
Advanced tools
Comparing version 1.0.9 to 1.0.10
12
Obj.d.ts
@@ -24,10 +24,10 @@ import { KeyType, KeyValue } from "./Types"; | ||
snapshot(): { | ||
[k: string]: KeyValue; | ||
[k: number]: KeyValue; | ||
[k: symbol]: KeyValue; | ||
[k: string]: NonNullable<KeyValue>; | ||
[k: number]: NonNullable<KeyValue>; | ||
[k: symbol]: NonNullable<KeyValue>; | ||
}; | ||
lastSnapshot(): { | ||
[k: string]: KeyValue; | ||
[k: number]: KeyValue; | ||
[k: symbol]: KeyValue; | ||
[k: string]: NonNullable<KeyValue>; | ||
[k: number]: NonNullable<KeyValue>; | ||
[k: symbol]: NonNullable<KeyValue>; | ||
}; | ||
@@ -34,0 +34,0 @@ getValue(key: KeyType): any; |
@@ -107,3 +107,6 @@ "use strict"; | ||
for (var key in this.props) { | ||
ret[key] = this.props[key].getFormatedValue(); | ||
var v = this.props[key].getFormatedValue(); | ||
if (v) { | ||
ret[key] = v; | ||
} | ||
} | ||
@@ -110,0 +113,0 @@ return ret; |
{ | ||
"name": "ag-reactive", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "", |
@@ -11,3 +11,3 @@ export type KeyType = string | number | symbol; | ||
v: { | ||
[k: KeyType]: KeyValue; | ||
[k: KeyType]: NonNullable<KeyValue>; | ||
}; | ||
@@ -19,10 +19,2 @@ } | { | ||
}; | ||
export type FormatedData = { | ||
[k: string]: { | ||
t: 'a' | 'o'; | ||
v: { | ||
[k: KeyType]: KeyValue; | ||
}; | ||
}; | ||
}; | ||
export type KeyDelta = { | ||
@@ -29,0 +21,0 @@ [key: KeyType]: { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40596
1146