mirror of
https://github.com/fluencelabs/libp2p-ts
synced 2025-04-03 02:41:04 +00:00
17 lines
416 B
TypeScript
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;
|
||
|
}
|