UNPKG

storybook-addon-customize-antd-theme

Version:
9 lines (8 loc) 272 B
import { ArgType, Args } from '../interface'; export interface ArgRowProps { row: ArgType; arg: any; updateArgs?: (args: Args) => void; expandable?: boolean; } export default function ArgRow({ row, arg, updateArgs, expandable }: ArgRowProps): JSX.Element;