import { Entity } from "../interfaces/types"; import { ActionType } from "../interfaces/adminpanelConfig"; export interface Actions { link: string; id: string; type: 'blank' | 'self'; title: string; icon: string; } export default function inertiaActionsHelper(actionType: ActionType, entity: Entity, req: ReqType): Actions[];