UNPKG

lml-main

Version:

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

8 lines (7 loc) 459 B
import { AppState } from '../../common/reducers'; import { JobStatusModel } from '@lml/cosmo-ts-data'; import { DRAG_TYPES } from '../actions/dragging'; export declare const canAllocate: (state: AppState) => boolean; export declare const isDropTarget: (state: AppState, type: DRAG_TYPES, refId: string) => boolean; export declare const canAllocateJob: (job: JobStatusModel) => boolean; export declare const canDeallocateJob: (job: JobStatusModel) => boolean;