(
store: any,
data: Req['getBuildVersion'],
options?: Parameters<
typeof buildVersionService.endpoints.getBuildVersion.initiate
>[1],
)
| 53 | }) |
| 54 | |
| 55 | export async function getBuildVersion( |
| 56 | store: any, |
| 57 | data: Req['getBuildVersion'], |
| 58 | options?: Parameters< |
| 59 | typeof buildVersionService.endpoints.getBuildVersion.initiate |
| 60 | >[1], |
| 61 | ) { |
| 62 | return store.dispatch( |
| 63 | buildVersionService.endpoints.getBuildVersion.initiate(data, options), |
| 64 | ) |
| 65 | } |
| 66 | // END OF FUNCTION_EXPORTS |
| 67 | |
| 68 | export const selectBuildVersion = (state: StoreStateType) => |
no outgoing calls
no test coverage detected
searching dependent graphs…