@sanity/form-builder
Version:
Sanity form builder
13 lines • 428 B
TypeScript
import React from 'react';
import { Asset as AssetType } from '@sanity/types';
interface Props {
onClick?: (...args: any[]) => any;
onKeyPress?: (...args: any[]) => any;
onDeleteFinished: (...args: any[]) => any;
assets: AssetType[];
isLoading?: boolean;
selectedAssets: AssetType[];
}
export default function TableList(props: Props): React.JSX.Element;
export {};
//# sourceMappingURL=TableList.d.ts.map