lml-main
Version:
This is now a mono repository published into many standalone packages.
14 lines (13 loc) • 655 B
TypeScript
import * as React from 'react';
import { JobSearchParams } from '@lml/cosmo-redux-api';
import { StylableComponentProps } from 'cosmoui';
export declare type FetchJobsByStatus = (searchKey: string, params: JobSearchParams, showData?: string, args?: any) => any;
export interface JobsSearchFormProps extends StylableComponentProps {
}
export interface JobsSearchFormComponentProps extends JobsSearchFormProps {
frequencies: string[];
resetForm: (formName: string) => any;
notificationWarning: (message: string) => void;
fetchJobsByStatus: FetchJobsByStatus;
}
export declare const JobsSearchForm: React.ComponentClass<JobsSearchFormProps>;