@open-tender/cloud
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our cloud-based Order API.
10 lines (9 loc) • 413 B
TypeScript
import { AppState } from '../app';
export interface LoaderState {
loading: boolean;
title: string;
subtitle: string;
}
export declare const setLoading: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "loader/setLoading">;
export declare const selectLoader: (state: AppState) => LoaderState;
export declare const loaderReducer: import("redux").Reducer<LoaderState, import("redux").AnyAction>;