UNPKG

@kubiklabs/wasmkit

Version:

Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.

10 lines (9 loc) 934 B
import { WasmkitRuntimeEnvironment } from "../../types"; export declare function printSuggestedCommands(packageManager: string, shouldShowInstallationInstructions: boolean): void; export declare function createContractListJson(contractDir: string, destinationDir: string, env: WasmkitRuntimeEnvironment): void; export declare function convertTypescriptFileToJson(inputFilePath: string, outputFilePath: string, name: string): void; export declare function processFilesInFolder(folderPath: string, destPath: string): void; export declare function createDir(dir: string): void; export declare function createPlayground(projectPath: string, templateName: string, destination: string, env: WasmkitRuntimeEnvironment): Promise<void>; export declare function createConfirmationPrompt(name: string, message: string): any; export declare function installDependencies(packageManager: string, args: string, location?: string): Promise<boolean>;