2018-11-21 10:51:35 +01:00

17 lines
416 B
TypeScript

// Type definitions for keccak 1.0.4
// Project: https://github.com/ethereumjs/ethereumjs-testing
// Definitions by: Jaco Greeff <https://github.com/jacogr>
// 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;
}