@microsoft.azure/autorest.incubator
Version:
AutoRest incubator project
26 lines • 941 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const components_1 = require("../../common/code-model/components");
const extensions_1 = require("../../common/code-model/extensions");
const dictionary_1 = require("../../common/dictionary");
class CommandOperation extends extensions_1.Extensions {
constructor(name, initializer) {
super();
this.extensions = new dictionary_1.Dictionary();
this.responses = new dictionary_1.Dictionary();
this.details = {
default: {
description: 'MISSING DESCRIPTION 01',
name,
}
};
this.deprecated = false;
this.pure = true;
this.apply(initializer);
}
}
exports.CommandOperation = CommandOperation;
class CommandComponents extends components_1.Components {
}
exports.CommandComponents = CommandComponents;
//# sourceMappingURL=command-operation.js.map