fhirbuilder
Version:
Another FHIR Tool to build FHIR Resources
9 lines (8 loc) • 416 B
TypeScript
import { IPractitioner, IOperationOutcomeIssue } from 'fhirtypes/dist/r4';
/**
* @description Validates the Practitioner model
* @param dataToValidate - the Practitioner model to validate
* @param path - the path to the model
* @param errors - the errors array
*/
export declare function PractitionerValidator<T extends IPractitioner>(dataToValidate: T, path?: string, errors?: IOperationOutcomeIssue[]): void;