interface BoardEditFormProps {
    access?: boolean;
    onModify?: (() => void);
    onRemove?: (() => void);
    value: Record<"title" | "createdAt" | "content" | "category", any>;
}

Properties

access?: boolean
onModify?: (() => void)

Type declaration

    • (): void
    • Returns void

onRemove?: (() => void)

Type declaration

    • (): void
    • Returns void

value: Record<"title" | "createdAt" | "content" | "category", any>

Generated using TypeDoc