@hiennc24/constant 1.0.29 → 1.1.0
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/lib/collections.constant.d.ts +1 -1
- package/lib/collections.constant.js +590 -590
- package/lib/index.d.ts +2 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import SERVICE_BROKER from "./service.constant.json";
|
|
2
2
|
export default SERVICE_BROKER;
|
|
3
3
|
export type ServiceBrokerConstantType = {
|
|
4
|
-
[
|
|
4
|
+
[K in keyof typeof SERVICE_BROKER]: (typeof SERVICE_BROKER)[K];
|
|
5
5
|
};
|
|
6
|
-
export { default as COLLECTIONS, CollectionsConstantType } from
|
|
6
|
+
export { default as COLLECTIONS, CollectionsConstantType, } from "./collections.constant";
|
|
7
7
|
export declare const addLocalServices: (services: ServiceBrokerConstantType) => void;
|