lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 299 B
TypeScript
export declare const RELOAD_JOBS = "RELOAD_JOBS";
export interface ReloadJobsAction {
type: 'RELOAD_JOBS';
showData?: string;
}
export declare type JobDataAction = ReloadJobsAction;
/**
* Load all jobs by status
*/
export declare const reloadJobs: (showData?: string) => ReloadJobsAction;