Files
servo/components/script/dom/datatransfer/mod.rs
elomscansio 2bc868788f script: Move datatransfer DOM interfaces to script/dom/datatransfer/ (#43609)
Moves interfaces defined by the datatransfer spec to the
script/dom/datatransfer/ module from script/dom/.

Testing: Just a refactor shouldn't need any testing
Fixes: Partially #38901

Signed-off-by: Emmanuel Paul Elom <elomemmanuel007@gmail.com>
2026-03-24 15:46:38 +00:00

13 lines
436 B
Rust

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
pub(crate) use self::datatransfer::*;
#[allow(
clippy::module_inception,
reason = "The interface name is DataTransfer"
)]
pub(crate) mod datatransfer;
pub(crate) mod datatransferitem;
pub(crate) mod datatransferitemlist;