UNPKG

sanity-plugin-seo

Version:

Complete SEO toolkit for Sanity Studio with live scoring, AI suggestions, team workflows, and 30+ structured data types. Free and AI tiers live. Pro coming soon.

14 lines (13 loc) 566 B
import React from "react"; import { BulkDoc, RowEdit } from "./types"; interface Props { doc: BulkDoc; edit: RowEdit; isOpen: boolean; onToggleExpand: (id: string) => void; onToggleSelect: (id: string, e: React.MouseEvent | React.KeyboardEvent) => void; onFieldChange: (id: string, field: keyof Omit<RowEdit, "saving" | "saved">, val: string) => void; onSave: (doc: BulkDoc) => void; } export default function BulkDocRow({ doc, edit, isOpen, onToggleExpand, onToggleSelect, onFieldChange, onSave, }: Props): React.JSX.Element; export {};