forstok-ui-lib 8.3.7 → 8.3.11

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.
@@ -1,5 +1,6 @@
1
1
  import type { ActionMeta, OnChangeValue, SingleValueProps } from 'react-select';
2
2
  import type { OptionProps, GroupBase, StylesConfig, CSSObjectWithLabel, ControlProps, ValueContainerProps, MultiValueProps, MultiValue, OptionsOrGroups, MenuListProps } from 'react-select';
3
+ import type { Response } from 'react-select-async-paginate';
3
4
  import type { Moment } from 'moment';
4
5
  import type { CSSObject } from '@emotion/serialize'
5
6
  import type { TChannel } from '../../typeds/shares.typed';
@@ -112,4 +113,6 @@ export type TMultiValue = MultiValue<TOption>
112
113
 
113
114
  export type TOptionsOrGroupsWithVariable = OptionsOrGroups<TOption, GroupBase<TOption>>
114
115
 
115
- export type TMenuListProps = MenuListProps
116
+ export type TMenuListProps = MenuListProps
117
+
118
+ export type TResponseAsync = Response<unknown, TGroupBaseWithVariable, unknown>