UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

7 lines (6 loc) 377 B
import { RootState } from '../../root'; import { BookingApiState } from '../reducers'; import { BookingModel } from '@lml/cosmo-ts-data'; export declare const getBookingState: (state: RootState) => BookingApiState; export declare const getBookingById: (state: RootState, id: string) => BookingModel; export declare const getBookingSearch: (state: RootState) => BookingModel[];