import { WatcherTag } from '../../Abstract'; import { TContainerDecorator } from '../../Global'; import { KeyWatcherType } from '../Constants'; export type TKeyWatcherParams = Readonly<{ type: KeyWatcherType; container: TContainerDecorator; tags?: ReadonlyArray; }>; export type TKeyComboWatcherParams = TKeyWatcherParams;