UNPKG

mims-drug-database

Version:

MIMS Drug Database integration

13 lines 1.11 kB
import { IDDDuplicateAlert, IDDWarningLevelAlert, IDHDocLevelAlert, IDHSeverityLevelAlert, IDISeverityAlert, IDocLevelAlert, ITGAPoisonSchedules, ITGAPregnancyCate, ITGASportDrugCate } from "../interfaces/Interfaces"; export default class Definitions { static getPoisonSchedules(searchParam: ITGAPoisonSchedules | null): Promise<unknown>; static getPragnancyCategories(searchParam: ITGAPregnancyCate | null): Promise<unknown>; static getSportsDrugCategories(searchParam: ITGASportDrugCate | null): Promise<unknown>; static getDIDocLevelAlert(searchParam: IDocLevelAlert | null): Promise<unknown>; static getDISeverityLevel(searchParam: IDISeverityAlert | null): Promise<unknown>; static getDHDocumentLevel(searchParam: IDHDocLevelAlert | null): Promise<unknown>; static getDHSeverityLevel(searchParam: IDHSeverityLevelAlert | null): Promise<unknown>; static getDDWarningLevel(searchParam: IDDWarningLevelAlert | null): Promise<unknown>; static getDDDuplicateLevelAlert(searchParam: IDDDuplicateAlert | null): Promise<unknown>; } //# sourceMappingURL=Definitions.d.ts.map