├── .gitignore ├── LICENSE.md ├── README.md ├── discord.js ├── index.js ├── package.json └── utils ├── sig.js └── types.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sell/discord-autotyper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sell/discord-autotyper/HEAD/README.md -------------------------------------------------------------------------------- /discord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sell/discord-autotyper/HEAD/discord.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sell/discord-autotyper/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sell/discord-autotyper/HEAD/package.json -------------------------------------------------------------------------------- /utils/sig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sell/discord-autotyper/HEAD/utils/sig.js -------------------------------------------------------------------------------- /utils/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sell/discord-autotyper/HEAD/utils/types.js --------------------------------------------------------------------------------