UNPKG

dnd-core

Version:

Drag and drop sans the GUI

8 lines (7 loc) 294 B
import { Action } from '../interfaces'; export declare type State = string[]; export interface DirtyHandlerIdPayload { targetIds: string[]; prevTargetIds: string[]; } export default function dirtyHandlerIds(state: string[] | undefined, action: Action<DirtyHandlerIdPayload>): string[];