├── .gitignore ├── environment.d.ts ├── package.json ├── src ├── commands │ └── info │ │ └── ping.ts ├── events │ ├── interactionCreate.ts │ └── ready.ts ├── index.ts ├── structures │ ├── Client.ts │ ├── Command.ts │ └── Event.ts └── typings │ ├── Command.ts │ └── client.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | .env -------------------------------------------------------------------------------- /environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/environment.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/info/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/commands/info/ping.ts -------------------------------------------------------------------------------- /src/events/interactionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/events/interactionCreate.ts -------------------------------------------------------------------------------- /src/events/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/events/ready.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/structures/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/structures/Client.ts -------------------------------------------------------------------------------- /src/structures/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/structures/Command.ts -------------------------------------------------------------------------------- /src/structures/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/structures/Event.ts -------------------------------------------------------------------------------- /src/typings/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/typings/Command.ts -------------------------------------------------------------------------------- /src/typings/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/src/typings/client.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limxuan/djs-typescript-handler/HEAD/tsconfig.json --------------------------------------------------------------------------------