react-weekly-planning 1.0.4 → 1.0.5
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/definitions/index.ts +2 -2
- package/package.json +1 -1
package/definitions/index.ts
CHANGED
|
@@ -33,7 +33,7 @@ type GroupRiquiredFieldsType = {
|
|
|
33
33
|
/**
|
|
34
34
|
* Additional fields for a group.
|
|
35
35
|
*/
|
|
36
|
-
type GroupAdditionalFieldsType = Record<any,
|
|
36
|
+
type GroupAdditionalFieldsType = Record<any,any>;
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
39
|
* Fields for a group, including both required and additional fields.
|
|
@@ -376,7 +376,7 @@ export type SumHoursHeadContainerPropsType = {
|
|
|
376
376
|
/**
|
|
377
377
|
* Additional fields for a task.
|
|
378
378
|
*/
|
|
379
|
-
type TaskAdditionalFieldsType = Record<any,
|
|
379
|
+
type TaskAdditionalFieldsType = Record<any, any>;
|
|
380
380
|
|
|
381
381
|
/**
|
|
382
382
|
* Fields for a task, including both required and additional fields.
|