react-luminus-components 1.3.269 → 1.4.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.
@@ -110,4 +110,6 @@ export type { default as ApprovalPersonModel } from './api/approval/ApprovalPers
110
110
  export { default as ApprovalState } from './api/approval/ApprovalState';
111
111
  export type { default as ApprovalTimelineModel } from './api/approval/ApprovalTimelineModel';
112
112
  export type { default as EmployeeSmallModel } from './api/employee/EmployeeSmallModel';
113
+ export type { default as ReloadDataWithReturnType } from './types/useGetApiData/ReloadDataWithReturnType';
114
+ export type { default as ReloadDataType } from './types/useGetApiData/ReloadDataType';
113
115
  export type { default as AuthToken } from './types/auth/AuthToken';
@@ -0,0 +1,2 @@
1
+ type ReloadDataType = () => Promise<void>;
2
+ export default ReloadDataType;
@@ -0,0 +1,2 @@
1
+ type ReloadDataWithReturnType<ReturnType> = () => Promise<ReturnType | null>;
2
+ export default ReloadDataWithReturnType;