UNPKG

9s-fe-core

Version:

Core functionalities for authentication, configuration, and repository management.

9 lines (8 loc) 415 B
import { ActionModel, ActionSchemaModel } from '../../models/schema_model'; export declare const DetailModal: ({ isOpen, onClose, record, onActionClick, actionSchema, }: { actionSchema?: ActionSchemaModel; isOpen: boolean; onClose: () => void; onActionClick: (action: ActionModel, record: Record<string, any>) => void; record: Record<string, any>; }) => import("react/jsx-runtime").JSX.Element;