UNPKG

@autorest/go

Version:
30 lines 1.1 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 Method { constructor(name, receiver) { this.name = name; this.receiver = receiver; this.parameters = new Array(); this.docs = {}; } } export class Parameter { constructor(name, type, byValue) { this.name = name; this.type = type; this.byValue = byValue; this.docs = {}; } } export class Receiver { constructor(name, type, byValue) { this.name = name; this.type = type; this.byValue = byValue; } } //# sourceMappingURL=method.js.map