feedbaby-client
Version:
Client for the FeedBaby App
21 lines (20 loc) • 826 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const CsvFile_1 = require("../CsvFile");
const json2csv_1 = require("json2csv");
class MedicationRecordsTimeOfDayNotificationTriggerCsv extends CsvFile_1.CsvFile {
static create() {
return new MedicationRecordsTimeOfDayNotificationTriggerCsv(new json2csv_1.Parser(CsvFile_1.CsvFile.createOptions(MedicationRecordsTimeOfDayNotificationTriggerCsv.HEADERS)));
}
getFilename() {
return "medication_records_time_of_day_notification_triggers.csv";
}
}
exports.MedicationRecordsTimeOfDayNotificationTriggerCsv = MedicationRecordsTimeOfDayNotificationTriggerCsv;
MedicationRecordsTimeOfDayNotificationTriggerCsv.HEADERS = [
"id",
"repeatingAlarm",
"start_time_hour",
"start_time_minute",
"medicineId",
];