UNPKG

@simbachain/truffle

Version:
31 lines 798 B
import yargs from 'yargs'; export declare const command = "addlib"; export declare const describe = "add external library to your project"; export declare const builder: { libname: { string: boolean; type: string; describe: string; }; libaddr: { string: boolean; type: string; describe: string; }; }; /** * add an external library to your project * @param args * args: * args.linbname * args.libaddr * @returns */ export declare const handler: (args: yargs.Arguments) => Promise<any>; /** * add an external library to your project * @param libName * @param libAddress */ export declare function addLibrary(libName: string | undefined, libAddress: string | undefined): Promise<void>; //# sourceMappingURL=addlibrary.d.ts.map