├── .gitignore ├── README.md ├── index.d.ts ├── package.json ├── test.ts ├── tsconfig.json ├── tsconfig.spec.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | pkg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacolaco/network-information-types/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacolaco/network-information-types/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacolaco/network-information-types/HEAD/package.json -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacolaco/network-information-types/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacolaco/network-information-types/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacolaco/network-information-types/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacolaco/network-information-types/HEAD/yarn.lock --------------------------------------------------------------------------------