@luvio/environments 0.138.0 → 0.138.2

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.
Files changed (43) hide show
  1. package/dist/es/es2018/environments.js +858 -852
  2. package/dist/es/es2018/{DurableStore.d.ts → types/DurableStore.d.ts} +134 -134
  3. package/dist/{umd/es5 → es/es2018/types}/DurableTTLStore.d.ts +25 -25
  4. package/dist/{umd/es5 → es/es2018/types}/events.d.ts +18 -18
  5. package/dist/{umd/es5 → es/es2018/types}/main.d.ts +5 -5
  6. package/dist/es/es2018/{makeDurable → types/makeDurable}/error.d.ts +11 -11
  7. package/dist/es/es2018/{makeDurable → types/makeDurable}/flush.d.ts +4 -4
  8. package/dist/{umd/es5 → es/es2018/types}/makeDurable/revive.d.ts +38 -38
  9. package/dist/es/es2018/{makeDurable → types/makeDurable}/stagingStore.d.ts +6 -6
  10. package/dist/es/es2018/{makeDurable → types/makeDurable}/ttl.d.ts +3 -3
  11. package/dist/es/es2018/{makeDurable → types/makeDurable}/utils.d.ts +2 -2
  12. package/dist/es/es2018/{makeDurable.d.ts → types/makeDurable.d.ts} +44 -44
  13. package/dist/es/es2018/{utils → types/utils}/deep-freeze.d.ts +1 -1
  14. package/dist/es/es2018/{utils → types/utils}/language.d.ts +19 -19
  15. package/dist/umd/es2018/environments.js +858 -852
  16. package/dist/umd/es2018/{DurableStore.d.ts → types/DurableStore.d.ts} +134 -134
  17. package/dist/{es/es2018 → umd/es2018/types}/DurableTTLStore.d.ts +25 -25
  18. package/dist/{es/es2018 → umd/es2018/types}/events.d.ts +18 -18
  19. package/dist/umd/es2018/{main.d.ts → types/main.d.ts} +5 -5
  20. package/dist/umd/{es5 → es2018/types}/makeDurable/error.d.ts +11 -11
  21. package/dist/umd/es2018/{makeDurable → types/makeDurable}/flush.d.ts +4 -4
  22. package/dist/{es/es2018 → umd/es2018/types}/makeDurable/revive.d.ts +38 -38
  23. package/dist/umd/{es5 → es2018/types}/makeDurable/stagingStore.d.ts +6 -6
  24. package/dist/umd/es2018/{makeDurable → types/makeDurable}/ttl.d.ts +3 -3
  25. package/dist/umd/es2018/{makeDurable → types/makeDurable}/utils.d.ts +2 -2
  26. package/dist/umd/{es5 → es2018/types}/makeDurable.d.ts +44 -44
  27. package/dist/umd/es2018/{utils → types/utils}/deep-freeze.d.ts +1 -1
  28. package/dist/umd/es2018/{utils → types/utils}/language.d.ts +19 -19
  29. package/dist/umd/es5/environments.js +942 -936
  30. package/dist/umd/es5/{DurableStore.d.ts → types/DurableStore.d.ts} +134 -134
  31. package/dist/umd/{es2018 → es5/types}/DurableTTLStore.d.ts +25 -25
  32. package/dist/umd/{es2018 → es5/types}/events.d.ts +18 -18
  33. package/dist/{es/es2018 → umd/es5/types}/main.d.ts +5 -5
  34. package/dist/umd/{es2018 → es5/types}/makeDurable/error.d.ts +11 -11
  35. package/dist/umd/es5/{makeDurable → types/makeDurable}/flush.d.ts +4 -4
  36. package/dist/umd/{es2018 → es5/types}/makeDurable/revive.d.ts +38 -38
  37. package/dist/umd/{es2018 → es5/types}/makeDurable/stagingStore.d.ts +6 -6
  38. package/dist/umd/es5/{makeDurable → types/makeDurable}/ttl.d.ts +3 -3
  39. package/dist/umd/es5/{makeDurable → types/makeDurable}/utils.d.ts +2 -2
  40. package/dist/umd/{es2018 → es5/types}/makeDurable.d.ts +44 -44
  41. package/dist/umd/es5/{utils → types/utils}/deep-freeze.d.ts +1 -1
  42. package/dist/umd/es5/{utils → types/utils}/language.d.ts +19 -19
  43. package/package.json +4 -4
@@ -1,19 +1,19 @@
1
- declare const keys: {
2
- (o: object): string[];
3
- (o: {}): string[];
4
- }, create: {
5
- (o: object | null): any;
6
- (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
7
- }, assign: {
8
- <T, U>(target: T, source: U): T & U;
9
- <T_1, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
10
- <T_2, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
11
- (target: object, ...sources: any[]): any;
12
- }, freeze: {
13
- <T>(a: T[]): readonly T[];
14
- <T_1 extends Function>(f: T_1): T_1;
15
- <T_2>(o: T_2): Readonly<T_2>;
16
- };
17
- declare const hasOwnProperty: (v: PropertyKey) => boolean;
18
- declare const isArray: (arg: any) => arg is any[];
19
- export { create as ObjectCreate, keys as ObjectKeys, assign as ObjectAssign, freeze as ObjectFreeze, hasOwnProperty as ObjectPrototypeHasOwnProperty, isArray as ArrayIsArray, };
1
+ declare const keys: {
2
+ (o: object): string[];
3
+ (o: {}): string[];
4
+ }, create: {
5
+ (o: object | null): any;
6
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
7
+ }, assign: {
8
+ <T, U>(target: T, source: U): T & U;
9
+ <T_1, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
10
+ <T_2, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
11
+ (target: object, ...sources: any[]): any;
12
+ }, freeze: {
13
+ <T>(a: T[]): readonly T[];
14
+ <T_1 extends Function>(f: T_1): T_1;
15
+ <T_2>(o: T_2): Readonly<T_2>;
16
+ };
17
+ declare const hasOwnProperty: (v: PropertyKey) => boolean;
18
+ declare const isArray: (arg: any) => arg is any[];
19
+ export { create as ObjectCreate, keys as ObjectKeys, assign as ObjectAssign, freeze as ObjectFreeze, hasOwnProperty as ObjectPrototypeHasOwnProperty, isArray as ArrayIsArray, };