UNPKG

lml-main

Version:

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

17 lines (16 loc) 619 B
import * as React from 'react'; import { JobLabelModel } from '@lml/cosmo-ts-data'; import { ModalRootComponentProps } from 'cosmoui'; export interface JobLabelDeleteModalProps extends ModalRootComponentProps { currentModal: { modalType: string; modalProps: { jobLabel: JobLabelModel; }; }; closeModal: (modalType: string, closeAllOfType?: boolean) => any; } export interface JobLabelDeleteModalComponentProps extends JobLabelDeleteModalProps { deleteJobLabel: (jobLabel: JobLabelModel) => void; } export declare const JobLabelDeleteModal: React.ComponentClass<any>;