UNPKG

lml-main

Version:

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

14 lines (13 loc) 367 B
import * as React from 'react'; import { JobStopModel } from '@lml/cosmo-ts-data'; export interface StopFormProps { stop: JobStopModel; stopName: string; stopTitle: string; disabled?: boolean; earliestTime?: string; latestTime?: string; } export declare class StopForm extends React.Component<StopFormProps, {}> { render(): JSX.Element; }