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