UNPKG

303 BTypeScriptView Raw
1import { FC } from 'react';
2import { ArgType, Args } from './types';
3export interface ArgRowProps {
4 row: ArgType;
5 arg: any;
6 updateArgs?: (args: Args) => void;
7 compact?: boolean;
8 expandable?: boolean;
9 initialExpandedArgs?: boolean;
10}
11export declare const ArgRow: FC<ArgRowProps>;