Files
memecoin-botV2/.pnpm-store/v10/files/ee/eece3492373d611d05a9289db672ad8a4b0283c2fbff7038f2a514d9af294e96664634220cf5578643952c3bde9ca1588f5b1a7ab166352ece752dd721bda9

14 lines
494 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TypeDefinition = void 0;
const DefinitionBase_1 = require("./DefinitionBase");
const DefinitionType_1 = require("./DefinitionType");
class TypeDefinition extends DefinitionBase_1.DefinitionBase {
isTypeDefinition = true;
isVariableDefinition = false;
constructor(name, node) {
super(DefinitionType_1.DefinitionType.Type, name, node, null);
}
}
exports.TypeDefinition = TypeDefinition;