From 50c17732c6b04ed7df169114975f129570fb0f6c Mon Sep 17 00:00:00 2001 From: Luke Abby Date: Thu, 2 Jan 2025 03:58:33 -0800 Subject: [PATCH] Breaking: Remove DropData in src/foundry/client/data/abstract/client-document.d.mts --- src/foundry/client/data/abstract/client-document.d.mts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/foundry/client/data/abstract/client-document.d.mts b/src/foundry/client/data/abstract/client-document.d.mts index f930bafdf..7d4cf2728 100644 --- a/src/foundry/client/data/abstract/client-document.d.mts +++ b/src/foundry/client/data/abstract/client-document.d.mts @@ -697,9 +697,6 @@ declare global { } } -/** @deprecated {@link Document.DropData | `Document.DropData`} */ -export type DropData = Document.DropData; - // This is yet another `AnyDocument` type. // It exists specifically because the `Document.AnyConstructor` type is too safe to be merged in with a mixin. // The `arg0: never, ...args: never[]` trick trips up the base constructor check and so this one with an actual `...args: any[]` one is used instead.