Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
18 lines
647 B
Plaintext
18 lines
647 B
Plaintext
import type { Transform } from '@dnd-kit/utilities';
|
|
import type { Active, Over } from '../store';
|
|
import type { ClientRect } from '../types';
|
|
export declare type Modifier = (args: {
|
|
activatorEvent: Event | null;
|
|
active: Active | null;
|
|
activeNodeRect: ClientRect | null;
|
|
draggingNodeRect: ClientRect | null;
|
|
containerNodeRect: ClientRect | null;
|
|
over: Over | null;
|
|
overlayNodeRect: ClientRect | null;
|
|
scrollableAncestors: Element[];
|
|
scrollableAncestorRects: ClientRect[];
|
|
transform: Transform;
|
|
windowRect: ClientRect | null;
|
|
}) => Transform;
|
|
export declare type Modifiers = Modifier[];
|