@neo-one/smart-contract-codegen-esnext-esm
Version:
NEO•ONE TypeScript smart contract codegen.
14 lines (13 loc) • 364 B
TypeScript
import { RawSourceMap } from 'source-map';
export interface ContractPaths {
readonly name: string;
readonly sourceMap: RawSourceMap;
readonly contractPath: string;
readonly createContractPath: string;
readonly abiPath: string;
readonly typesPath: string;
}
export interface FileResult {
readonly ts: string;
readonly js?: string;
}