NotificationCategory.js 658 Bytes
Newer Older
冷佳娟's avatar
冷佳娟 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class NotificationCategory {
    constructor(identifier, actions) {
        this.identifier = identifier;
        this.actions = actions;
    }
}
exports.NotificationCategory = NotificationCategory;
class NotificationAction {
    constructor(identifier, activationMode, title, authenticationRequired, textInput) {
        this.identifier = identifier;
        this.activationMode = activationMode;
        this.title = title;
        this.authenticationRequired = authenticationRequired;
        this.textInput = textInput;
    }
}
exports.NotificationAction = NotificationAction;