├── .gitignore ├── LICENSE ├── README.md ├── discord.js-test.ts ├── index.d.ts ├── package.json ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/discord.js-typings/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/discord.js-typings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/discord.js-typings/HEAD/README.md -------------------------------------------------------------------------------- /discord.js-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/discord.js-typings/HEAD/discord.js-test.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/discord.js-typings/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/discord.js-typings/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/discord.js-typings/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/discord.js-typings/HEAD/tslint.json --------------------------------------------------------------------------------