UNPKG

@abaplint/core

Version:
22 lines 590 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Namespace = void 0; const _abstract_object_1 = require("./_abstract_object"); class Namespace extends _abstract_object_1.AbstractObject { getType() { return "NSPC"; } getAllowedNaming() { return { maxLength: 10, allowNamespace: true, customRegex: new RegExp(/^\/[A-Z_\d]{3,8}\/$/i), }; } getDescription() { // todo return undefined; } } exports.Namespace = Namespace; //# sourceMappingURL=namespace.js.map