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
16 lines
580 B
Plaintext
16 lines
580 B
Plaintext
import type { Active, Over } from '../../store';
|
|
export interface Arguments {
|
|
active: Active;
|
|
over: Over | null;
|
|
}
|
|
export interface Announcements {
|
|
onDragStart({ active }: Pick<Arguments, 'active'>): string | undefined;
|
|
onDragMove?({ active, over }: Arguments): string | undefined;
|
|
onDragOver({ active, over }: Arguments): string | undefined;
|
|
onDragEnd({ active, over }: Arguments): string | undefined;
|
|
onDragCancel({ active, over }: Arguments): string | undefined;
|
|
}
|
|
export interface ScreenReaderInstructions {
|
|
draggable: string;
|
|
}
|