UNPKG

@nomiclabs/buidler-truffle5

Version:
18 lines (14 loc) 435 B
import "@nomiclabs/buidler/types"; import { assert, expect } from "chai"; import { TruffleEnvironmentArtifacts } from "./artifacts"; declare module "@nomiclabs/buidler/types" { export interface BuidlerRuntimeEnvironment { artifacts: TruffleEnvironmentArtifacts; assert: typeof assert; expect: typeof expect; contract: ( description: string, definition: (accounts: string[]) => any ) => void; } }