mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:39:30 +08:00
14 lines
No EOL
554 B
Text
14 lines
No EOL
554 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.TypeDefinition = void 0;
|
|
const DefinitionType_1 = require("./DefinitionType");
|
|
const DefinitionBase_1 = require("./DefinitionBase");
|
|
class TypeDefinition extends DefinitionBase_1.DefinitionBase {
|
|
constructor(name, node) {
|
|
super(DefinitionType_1.DefinitionType.Type, name, node, null);
|
|
this.isTypeDefinition = true;
|
|
this.isVariableDefinition = false;
|
|
}
|
|
}
|
|
exports.TypeDefinition = TypeDefinition;
|
|
//# sourceMappingURL=TypeDefinition.js.map |