UNPKG

@wordpress/editor

Version:
13 lines (12 loc) 292 B
// packages/editor/src/utils/media-delete/index.js import apiFetch from "@wordpress/api-fetch"; async function mediaDelete(id) { await apiFetch({ path: `/wp/v2/media/${id}?force=true`, method: "DELETE" }); } export { mediaDelete as default }; //# sourceMappingURL=index.mjs.map