UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

14 lines (13 loc) 599 B
import React from "react"; import { IDbViewerApi } from "./Domain/Api/DbViewerApi"; import { ICustomRenderer } from "./Domain/Objects/CustomRenderer"; interface DbViewerApplicationProps { dbViewerApi: IDbViewerApi; customRenderer: ICustomRenderer; identifierKeywords: string[]; useErrorHandlingContainer: boolean; isSuperUser: boolean; withGoBackUrl?: boolean; } export declare const DbViewerApplication: ({ dbViewerApi, customRenderer, isSuperUser, identifierKeywords, useErrorHandlingContainer, withGoBackUrl, }: DbViewerApplicationProps) => React.ReactElement; export {};