UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

10 lines (9 loc) 299 B
import { PropertyMetaInformation } from './PropertyMetaInformation'; export type TypeMetaInformation = { typeName: string; originalTypeName: string; isArray: boolean; isNullable: boolean; properties: PropertyMetaInformation[]; genericTypeArguments: TypeMetaInformation[]; };