UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

9 lines (8 loc) 592 B
import { Condition } from "../Api/DataTypes/Condition"; import { PropertyMetaInformation } from "../Api/DataTypes/PropertyMetaInformation"; import { TypeMetaInformation } from "../Api/DataTypes/TypeMetaInformation"; export declare class PropertyMetaInformationUtils { static hasFilledRequiredFields(conditions: Condition[], properties: PropertyMetaInformation[]): boolean; static getProperties(properties: PropertyMetaInformation[], prevName?: string): PropertyMetaInformation[]; static getPropertyTypeByPath(type: TypeMetaInformation, path: string[]): PropertyMetaInformation; }