UNPKG

lml-main

Version:

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

10 lines (9 loc) 348 B
import * as React from 'react'; import { JobStopModel } from '@lml/cosmo-ts-data'; import { StylableComponentProps } from 'cosmoui'; export interface JobStopTimeSlotProps extends StylableComponentProps { id?: string; refId: string; stop: JobStopModel; } export declare const JobStopTimeSlot: React.ComponentClass<JobStopTimeSlotProps>;