UNPKG

lml-main

Version:

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

16 lines (15 loc) 553 B
import * as React from 'react'; import { JobStatusType } from '@lml/cosmo-ts-data'; export interface KeyboardShortcutsProps { jobStatus: JobStatusType | null; notificationInfo: (a: string, b: boolean) => any; deallocateActiveJob: () => any; onKeyEnterPress: () => any; onKeyUpPress: () => any; onKeyDownPress: () => any; selectTrayToLeft: () => any; selectTrayToRight: () => any; showAllocationModal: () => any; redirect: (path: string) => any; } export declare const KeyboardShortcuts: React.ComponentClass<{}>;