UNPKG

openapi-graph-core

Version:

A TS library to manage large API projects defined by OpenAPIv3 specification.

14 lines (13 loc) 406 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SchemaNode = void 0; const Node_1 = require("./Node"); const SchemaNode = class SchemaNodeImpl extends Node_1.Node { constructor(name, content, isInline) { super(name); this.content = content; this.referencedBy = {}; this.isInline = isInline; } }; exports.SchemaNode = SchemaNode;