// Type definitions for keccak 1.0.4 // Project: https://github.com/ethereumjs/ethereumjs-testing // Definitions by: Jaco Greeff // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare module 'ethereumjs-testing' { type Tests = { [index: string]: { in: string, out: string, root: string } }; export const getSingleFile: (name: string) => Tests; }