UNPKG

230 BTypeScriptView Raw
1import { FC } from 'react';
2import { Args, ArgType } from './types';
3export interface ArgControlProps {
4 row: ArgType;
5 arg: any;
6 updateArgs: (args: Args) => void;
7}
8export declare const ArgControl: FC<ArgControlProps>;