@nodegui/nodegui
Version:
A cross-platform library to build native desktop apps.
18 lines (17 loc) • 574 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.QTimerEvent = void 0;
const addon_1 = __importDefault(require("../../utils/addon"));
const QEvent_1 = require("./QEvent");
class QTimerEvent extends QEvent_1.QEvent {
constructor(event) {
super(new addon_1.default.QTimerEvent(event));
}
timerId() {
return this.native.timerId();
}
}
exports.QTimerEvent = QTimerEvent;