TiddlyWiki5/core/modules/widgets/void.js
2026-02-19 12:45:27 +00:00

17 lines
352 B
JavaScript
Executable file

/*\
title: $:/core/modules/widgets/void.js
type: application/javascript
module-type: widget
\*/
"use strict";
var Widget = require("$:/core/modules/widgets/widget.js").widget;
var VoidNodeWidget = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options);
};
VoidNodeWidget.prototype = new Widget();
exports.void = VoidNodeWidget;