fhirbuilder
Version:
Another FHIR Tool to build FHIR Resources
11 lines (10 loc) • 552 B
TypeScript
import { IQuestionnaire, IOperationOutcomeIssue } from 'fhirtypes/dist/r4';
import { ResourceTypesEnum } from 'fhirtypes/dist/r4/enums';
export declare const QuestionnaireResourceTypes: ResourceTypesEnum[];
/**
* @description Validates the Questionnaire model
* @param dataToValidate - the Questionnaire model to validate
* @param path - the path to the model
* @param errors - the errors array
*/
export declare function QuestionnaireValidator<T extends IQuestionnaire>(dataToValidate: T, path?: string, errors?: IOperationOutcomeIssue[]): void;