├── .gitignore ├── LICENSE ├── README.md ├── gep ├── fortnite.d.ts └── valorant.d.ts ├── overwolf.d.ts ├── owads.d.ts ├── package.json └── rainbow-six.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/README.md -------------------------------------------------------------------------------- /gep/fortnite.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/gep/fortnite.d.ts -------------------------------------------------------------------------------- /gep/valorant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/gep/valorant.d.ts -------------------------------------------------------------------------------- /overwolf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/overwolf.d.ts -------------------------------------------------------------------------------- /owads.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/owads.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/package.json -------------------------------------------------------------------------------- /rainbow-six.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/types/HEAD/rainbow-six.d.ts --------------------------------------------------------------------------------