lml-main
Version:
This is now a mono repository published into many standalone packages.
12 lines (11 loc) • 370 B
TypeScript
import * as React from 'react';
import { JobModel, JobStatusModel } from '@lml/cosmo-ts-data';
export interface JobsRowProps {
refId: string;
}
export interface JobRowComponentProps extends JobsRowProps {
job: JobModel;
jobStatus: JobStatusModel;
showJobDetails: (refId: string) => any;
}
export declare const JobRow: React.ComponentClass<JobsRowProps>;