UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

12 lines (11 loc) 494 B
import React from "react"; import { IDbViewerApi } from "../Domain/Api/DbViewerApi"; import { ICustomRenderer } from "../Domain/Objects/CustomRenderer"; interface ObjectDetailsProps { isSuperUser: boolean; dbViewerApi: IDbViewerApi; customRenderer: ICustomRenderer; useErrorHandlingContainer: boolean; } export declare const ObjectDetailsContainer: ({ isSuperUser, dbViewerApi, customRenderer, useErrorHandlingContainer, }: ObjectDetailsProps) => React.ReactElement; export {};