UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

11 lines (10 loc) 436 B
import { type ReactElement } from "react"; import { IDbViewerApi } from "../Domain/Api/DbViewerApi"; interface ObjectTypesProps { dbViewerApi: IDbViewerApi; useErrorHandlingContainer: boolean; identifierKeywords: string[]; withGoBackUrl?: boolean; } export declare const ObjectTypesContainer: ({ dbViewerApi, useErrorHandlingContainer, identifierKeywords, withGoBackUrl, }: ObjectTypesProps) => ReactElement; export {};