UNPKG

@yunusemrejs/drag-drop-content-types-strapi5

Version:

A powerful Strapi plugin that enables intuitive drag-and-drop sorting of content types with real-time updates, optimized performance, and a seamless user experience.

14 lines (13 loc) 396 B
/** * @typedef {object} InitializerProps * @property {(id: string) => void} setPlugin - A function to set the plugin. */ /** * Initializes the plugin. * @param {InitializerProps} props - The component props. * @returns {null} - This component doesn't render anything. */ declare const Initializer: ({ setPlugin }: { setPlugin: (id: string) => void; }) => null; export { Initializer };