@neo-one/smart-contract-codegen-esnext-esm
Version:
NEO•ONE TypeScript smart contract codegen.
16 lines (15 loc) • 594 B
TypeScript
import { CodegenFramework } from '@neo-one/cli-common-esnext-esm';
import { ContractPaths } from '../type';
export declare const genGenerated: ({ contractsPaths, contractsPath, reactPath, angularPath, vuePath, clientPath, generatedPath, framework, }: {
readonly contractsPaths: readonly ContractPaths[];
readonly contractsPath: string;
readonly reactPath: string;
readonly angularPath: string;
readonly vuePath: string;
readonly clientPath: string;
readonly generatedPath: string;
readonly framework: CodegenFramework;
}) => {
ts: string;
js: string;
};