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

14 lines (13 loc) 290 B
interface FileConfig { regex: RegExp; maxSize: number; required: boolean; multiple: boolean; id: string; } export declare function copyReleaseFile({ fileConfig, fromDir, toDir }: { fileConfig: FileConfig; fromDir: string; toDir: string; }): void; export {};