UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

7 lines (6 loc) 770 B
import React from "react"; import { PropertyMetaInformation } from "../../Domain/Api/DataTypes/PropertyMetaInformation"; import { ICustomRenderer } from "../../Domain/Objects/CustomRenderer"; export declare function renderForTableCell(target: any, path: string[], property: PropertyMetaInformation, objectType: string, customRenderer: ICustomRenderer): string | React.ReactElement; export declare function renderForDetails(target: any, path: string[], property: PropertyMetaInformation, objectType: string, customRenderer: ICustomRenderer): string | React.ReactElement; export declare function renderForEdit(value: any, property: PropertyMetaInformation, objectType: string, onChange: (value: any) => void, customRenderer: ICustomRenderer): string | React.ReactElement;