@fuel-ts/abi-typegen
Version:
Generates Typescript definitions from Sway ABI Json files
12 lines • 394 B
TypeScript
import type { Abi } from '../abi/Abi';
import type { IFile } from '../index';
/**
* Render all Contract-related templates and returns
* an array of `IFile` with them all. For here on,
* the only thing missing is to write them to disk.
*/
export declare function assembleContracts(params: {
abis: Abi[];
outputDir: string;
}): IFile[];
//# sourceMappingURL=assembleContracts.d.ts.map