10 lines
201 B
JavaScript
10 lines
201 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.HTML = exports.BODY = void 0;
|
|
const BODY = 'body';
|
|
exports.BODY = BODY;
|
|
const HTML = 'html';
|
|
exports.HTML = HTML; |