UNPKG

@autorest/go

Version:
29 lines 1.21 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ /////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////// export class CodeModel { constructor(info, type, options, root) { this.info = info; this.options = options; this.type = type; this.root = root; } } export class Info { constructor(title) { this.title = title; } } export class Options { constructor(generateFakes, injectSpans, disallowUnknownFields, generateExamples) { this.generateFakes = generateFakes; this.injectSpans = injectSpans; this.omitConstructors = false; this.disallowUnknownFields = disallowUnknownFields; this.generateExamples = generateExamples; } } //# sourceMappingURL=codeModel.js.map