├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src ├── index.ts ├── structs │ ├── BasePoster.ts │ ├── DJSPoster.ts │ ├── DJSSharderPoster.ts │ ├── ErisPoster.ts │ └── RosePoster.ts └── typings.ts ├── tests ├── README.md ├── drose-worker.js ├── sharder.js ├── test.js └── traditional.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/structs/BasePoster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/src/structs/BasePoster.ts -------------------------------------------------------------------------------- /src/structs/DJSPoster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/src/structs/DJSPoster.ts -------------------------------------------------------------------------------- /src/structs/DJSSharderPoster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/src/structs/DJSSharderPoster.ts -------------------------------------------------------------------------------- /src/structs/ErisPoster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/src/structs/ErisPoster.ts -------------------------------------------------------------------------------- /src/structs/RosePoster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/src/structs/RosePoster.ts -------------------------------------------------------------------------------- /src/typings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/src/typings.ts -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/drose-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/tests/drose-worker.js -------------------------------------------------------------------------------- /tests/sharder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/tests/sharder.js -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/tests/test.js -------------------------------------------------------------------------------- /tests/traditional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/tests/traditional.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpbberry/topgg-autoposter/HEAD/tsconfig.json --------------------------------------------------------------------------------