itmar-block-packages
Version:
Common React components for WordPress custom blocks, now fully TypeScript-ready.
11 lines (10 loc) • 430 B
TypeScript
interface UpdateAllPostsProps {
postType: string;
blockName: string;
newAttributes: Record<string, any>;
onProcessStart: () => void;
onProcessEnd: () => void;
onProcessCancel: () => void;
}
export default function UpdateAllPostsBlockAttributes({ postType, blockName, newAttributes, onProcessStart, onProcessEnd, onProcessCancel, }: UpdateAllPostsProps): import("react/jsx-runtime").JSX.Element;
export {};