@sanity/desk-tool
Version:
Tool for managing all sorts of content in a structured manner
21 lines • 720 B
TypeScript
import { VirtualListChangeOpts } from '@sanity/ui';
import React from 'react';
import { DocumentListPaneItem, Layout } from './types';
interface DocumentListPaneContentProps {
childItemId: string;
error: {
message: string;
} | null;
filterIsSimpleTypeContraint: boolean;
fullList: boolean;
isActive: boolean;
isLoading: boolean;
items: DocumentListPaneItem[] | null;
layout?: Layout;
onListChange: (opts: VirtualListChangeOpts) => void;
onRetry?: (event: unknown) => void;
showIcons: boolean;
}
export declare function DocumentListPaneContent(props: DocumentListPaneContentProps): React.JSX.Element;
export {};
//# sourceMappingURL=DocumentListPaneContent.d.ts.map