Skip to content

Commit

Permalink
Add BpfLoader (#34)
Browse files Browse the repository at this point in the history
feat: Add BpfLoader
  • Loading branch information
jackcmay authored and mvines committed Jun 15, 2020
1 parent b8d586c commit 02787df
Show file tree
Hide file tree
Showing 14 changed files with 3,552 additions and 3,189 deletions.
4 changes: 4 additions & 0 deletions web3.js/flow-typed/elfy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module 'elfy' {
// TODO: Fill in types
declare module.exports: any;
}
73 changes: 73 additions & 0 deletions web3.js/flow-typed/mz_vx.x.x.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
// flow-typed signature: ed29f42bf4f4916e4f3ba1f5e7343c9d
// flow-typed version: <<STUB>>/mz_v2.7.0/flow_v0.81.0

/**
* This is an autogenerated libdef stub for:
*
* 'mz'
*
* Fill this stub out by replacing all the `any` types.
*
* Once filled out, we encourage you to share your work with the
* community by sending a pull request to:
* https://github.com/flowtype/flow-typed
*/

declare module 'mz' {
declare module.exports: any;
}

/**
* We include stubs for each file inside this npm package in case you need to
* require those files directly. Feel free to delete any files that aren't
* needed.
*/
declare module 'mz/child_process' {
declare module.exports: any;
}

declare module 'mz/crypto' {
declare module.exports: any;
}

declare module 'mz/dns' {
declare module.exports: any;
}

declare module 'mz/fs' {
declare module.exports: any;
}

declare module 'mz/readline' {
declare module.exports: any;
}

declare module 'mz/zlib' {
declare module.exports: any;
}

// Filename aliases
declare module 'mz/child_process.js' {
declare module.exports: $Exports<'mz/child_process'>;
}
declare module 'mz/crypto.js' {
declare module.exports: $Exports<'mz/crypto'>;
}
declare module 'mz/dns.js' {
declare module.exports: $Exports<'mz/dns'>;
}
declare module 'mz/fs.js' {
declare module.exports: $Exports<'mz/fs'>;
}
declare module 'mz/index' {
declare module.exports: $Exports<'mz'>;
}
declare module 'mz/index.js' {
declare module.exports: $Exports<'mz'>;
}
declare module 'mz/readline.js' {
declare module.exports: $Exports<'mz/readline'>;
}
declare module 'mz/zlib.js' {
declare module.exports: $Exports<'mz/zlib'>;
}
Loading

0 comments on commit 02787df

Please sign in to comment.