@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.
- package/dist/es/es2018/environments.js +858 -852
- package/dist/es/es2018/{DurableStore.d.ts → types/DurableStore.d.ts} +134 -134
- package/dist/{umd/es5 → es/es2018/types}/DurableTTLStore.d.ts +25 -25
- package/dist/{umd/es5 → es/es2018/types}/events.d.ts +18 -18
- package/dist/{umd/es5 → es/es2018/types}/main.d.ts +5 -5
- package/dist/es/es2018/{makeDurable → types/makeDurable}/error.d.ts +11 -11
- package/dist/es/es2018/{makeDurable → types/makeDurable}/flush.d.ts +4 -4
- package/dist/{umd/es5 → es/es2018/types}/makeDurable/revive.d.ts +38 -38
- package/dist/es/es2018/{makeDurable → types/makeDurable}/stagingStore.d.ts +6 -6
- package/dist/es/es2018/{makeDurable → types/makeDurable}/ttl.d.ts +3 -3
- package/dist/es/es2018/{makeDurable → types/makeDurable}/utils.d.ts +2 -2
- package/dist/es/es2018/{makeDurable.d.ts → types/makeDurable.d.ts} +44 -44
- package/dist/es/es2018/{utils → types/utils}/deep-freeze.d.ts +1 -1
- package/dist/es/es2018/{utils → types/utils}/language.d.ts +19 -19
- package/dist/umd/es2018/environments.js +858 -852
- package/dist/umd/es2018/{DurableStore.d.ts → types/DurableStore.d.ts} +134 -134
- package/dist/{es/es2018 → umd/es2018/types}/DurableTTLStore.d.ts +25 -25
- package/dist/{es/es2018 → umd/es2018/types}/events.d.ts +18 -18
- package/dist/umd/es2018/{main.d.ts → types/main.d.ts} +5 -5
- package/dist/umd/{es5 → es2018/types}/makeDurable/error.d.ts +11 -11
- package/dist/umd/es2018/{makeDurable → types/makeDurable}/flush.d.ts +4 -4
- package/dist/{es/es2018 → umd/es2018/types}/makeDurable/revive.d.ts +38 -38
- package/dist/umd/{es5 → es2018/types}/makeDurable/stagingStore.d.ts +6 -6
- package/dist/umd/es2018/{makeDurable → types/makeDurable}/ttl.d.ts +3 -3
- package/dist/umd/es2018/{makeDurable → types/makeDurable}/utils.d.ts +2 -2
- package/dist/umd/{es5 → es2018/types}/makeDurable.d.ts +44 -44
- package/dist/umd/es2018/{utils → types/utils}/deep-freeze.d.ts +1 -1
- package/dist/umd/es2018/{utils → types/utils}/language.d.ts +19 -19
- package/dist/umd/es5/environments.js +942 -936
- package/dist/umd/es5/{DurableStore.d.ts → types/DurableStore.d.ts} +134 -134
- package/dist/umd/{es2018 → es5/types}/DurableTTLStore.d.ts +25 -25
- package/dist/umd/{es2018 → es5/types}/events.d.ts +18 -18
- package/dist/{es/es2018 → umd/es5/types}/main.d.ts +5 -5
- package/dist/umd/{es2018 → es5/types}/makeDurable/error.d.ts +11 -11
- package/dist/umd/es5/{makeDurable → types/makeDurable}/flush.d.ts +4 -4
- package/dist/umd/{es2018 → es5/types}/makeDurable/revive.d.ts +38 -38
- package/dist/umd/{es2018 → es5/types}/makeDurable/stagingStore.d.ts +6 -6
- package/dist/umd/es5/{makeDurable → types/makeDurable}/ttl.d.ts +3 -3
- package/dist/umd/es5/{makeDurable → types/makeDurable}/utils.d.ts +2 -2
- package/dist/umd/{es2018 → es5/types}/makeDurable.d.ts +44 -44
- package/dist/umd/es5/{utils → types/utils}/deep-freeze.d.ts +1 -1
- package/dist/umd/es5/{utils → types/utils}/language.d.ts +19 -19
- 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, };
|