Type Alias GlobalAppConfig<DeclarativeMappingType>

GlobalAppConfig: GlobalSemanticConfig & {
    authorityAccess?: Record<string, AuthorityConfiguration>;
    cellRendererRegistry?: JsonFormsCellRendererRegistryEntry[];
    detailViewConfig?: DetailViewConfigOptions;
    makeStubSchema?: (schema: JSONSchema7) => JSONSchema7;
    normDataMapping?: Record<string, NormDataMapping<DeclarativeMappingType>>;
    rendererRegistry?: JsonFormsRendererRegistryEntry[];
    schema: JSONSchema7;
    tableActionRegistry?: any[];
    tableColumnRegistry?: TableColumnRegistry;
    uiSchemaDefaultRegistry?: JsonFormsUISchemaRegistryEntry[];
    uischemata?: Record<string, any>;
}

Type Parameters

  • DeclarativeMappingType