Type alias BaseTypeInfoORMServiceConfig

BaseTypeInfoORMServiceConfig: {
    createRelationshipCleanupItem?: ((relationshipOriginatingItem) => Promise<void>);
    customValidators?: CustomTypeInfoFieldValidatorMap;
    getDriver: ((typeName) => DataItemDBDriver<any, any>);
    getRelationshipDriver: ((typeName, fieldName) => ItemRelationshipDBDriver);
    typeInfoMap: TypeInfoMap;
}

The basis for the configuration for the TypeInfoORMService.

Type declaration