keystone
Version:
Web Application Framework and Admin GUI / Content Management System built on Express.js and Mongoose
30 lines (21 loc) • 347 B
JavaScript
/*!
* Module dependencies.
*/
var util = require('util');
var super_ = require('../type');
/**
* HTML ContentType Constructor
* @extends Field
* @api public
*/
function html (path, options) {
html.super_.call(path, options);
}
/*!
* Inherit from Type
*/
util.inherits(html, super_);
/*!
* Export class
*/
module.exports = html;