feat(new-tool): mac address lookup

This commit is contained in:
Corentin Thomasset 2023-04-07 00:18:06 +02:00 committed by Corentin THOMASSET
parent 1060652590
commit 076df11024
7 changed files with 209 additions and 9 deletions

4
src/tools/mac-address-lookup/oui.d.ts vendored Normal file
View file

@ -0,0 +1,4 @@
declare module 'oui/oui.json' {
const db: Record<string, string>;
export default db;
}