@foxpage/foxpage-manager
Version:
foxpage resource manager
19 lines (18 loc) • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BlockInstance = void 0;
const common_1 = require("../common");
/**
* block
*
* @export
* @class Block
*/
class BlockInstance extends common_1.ContentDetailInstance {
constructor(data) {
super(data);
this.type = 'block';
this.type = 'block';
}
}
exports.BlockInstance = BlockInstance;