UNPKG

@dappnode/dappnodesdk

Version:

dappnodesdk is a tool to make the creation of new dappnode packages as simple as possible. It helps to initialize and publish in ethereum blockchain

17 lines (16 loc) 531 B
import { CommandModule } from "yargs"; import { CliGlobalOptions } from "../types.js"; interface CliCommandOptions extends CliGlobalOptions { repoSlug: string; provider: string; latest?: boolean; version?: string; } export declare const fromGithub: CommandModule<CliGlobalOptions, CliCommandOptions>; /** * Common handler for CLI and programatic usage */ export declare function fromGithubHandler({ repoSlug, provider, latest, version }: CliCommandOptions): Promise<{ releaseMultiHash: string; }>; export {};