()
| 203 | } |
| 204 | |
| 205 | export function props< |
| 206 | P extends SafeProps, |
| 207 | SafeProps = NotAllowedInPropsCheck<P>, |
| 208 | >(): ActionCreatorProps<P> { |
| 209 | // eslint-disable-next-line @typescript-eslint/no-non-null-assertion |
| 210 | return { _as: 'props', _p: undefined! }; |
| 211 | } |
| 212 | |
| 213 | export function union< |
| 214 | C extends { [key: string]: ActionCreator<string, Creator> }, |
no outgoing calls