@cosmwasm/ts-codegen
Version:
@cosmwasm/ts-codegen converts your CosmWasm smart contracts into dev-friendly TypeScript classes so you can focus on shipping code.
15 lines (14 loc) • 662 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Commands = void 0;
const create_boilerplate_1 = __importDefault(require("./commands/create-boilerplate"));
const generate_1 = __importDefault(require("./commands/generate"));
const install_1 = __importDefault(require("./commands/install"));
const Commands = {};
exports.Commands = Commands;
Commands['create-boilerplate'] = create_boilerplate_1.default;
Commands['generate'] = generate_1.default;
Commands['install'] = install_1.default;
;