@icure/cardinal-prescription-be-angular
Version:
This is a Belgian-specific Angular application for healthcare professionals to manage electronic prescriptions with SAM. Created by iCure.
9 lines (8 loc) • 637 B
TypeScript
import { PrescribedMedicationType } from '../../shared/types';
export declare const convertYyyyMmDdNumberToIsoDate: (dateNumber: number) => string;
export declare const getTreatmentStartDate: (prescribedMedication?: PrescribedMedicationType) => string;
export declare const getExecutableUntilDate: (prescribedMedication?: PrescribedMedicationType) => string;
export declare const formatToDayMonthYear: (timestamp: number) => string | undefined;
export declare function dateDecode(date: number): Date;
export declare function dateEncode(date: Date): number;
export declare function offsetDate(date: number, offsetInDays: number): number;