├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .nodemon.json ├── .npmignore ├── .npmrc ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── Gulpfile.js ├── LICENSE ├── README.md ├── UPDATING_V1.md ├── UPDATING_V2.md ├── bin ├── Embeds.js ├── FieldsEmbed.js ├── base │ └── index.js └── index.js ├── demo ├── Embeds.gif ├── FieldsEmbed.png ├── FieldsEmbed2.gif └── Types.png ├── deploy └── travis.sh ├── package.json ├── src ├── .eslintrc ├── Embeds.ts ├── FieldsEmbed.ts ├── base │ └── index.ts └── index.ts ├── test ├── bot.js └── credentials.sample.js ├── tsconfig.json ├── typedoc.json └── typings ├── Embeds.d.ts ├── FieldsEmbed.d.ts ├── base └── index.d.ts └── index.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | typings/* 3 | Gulpfile.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/.gitignore -------------------------------------------------------------------------------- /.nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/.nodemon.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/README.md -------------------------------------------------------------------------------- /UPDATING_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/UPDATING_V1.md -------------------------------------------------------------------------------- /UPDATING_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/UPDATING_V2.md -------------------------------------------------------------------------------- /bin/Embeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/bin/Embeds.js -------------------------------------------------------------------------------- /bin/FieldsEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/bin/FieldsEmbed.js -------------------------------------------------------------------------------- /bin/base/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/bin/base/index.js -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/bin/index.js -------------------------------------------------------------------------------- /demo/Embeds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/demo/Embeds.gif -------------------------------------------------------------------------------- /demo/FieldsEmbed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/demo/FieldsEmbed.png -------------------------------------------------------------------------------- /demo/FieldsEmbed2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/demo/FieldsEmbed2.gif -------------------------------------------------------------------------------- /demo/Types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/demo/Types.png -------------------------------------------------------------------------------- /deploy/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/deploy/travis.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/package.json -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/Embeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/src/Embeds.ts -------------------------------------------------------------------------------- /src/FieldsEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/src/FieldsEmbed.ts -------------------------------------------------------------------------------- /src/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/src/base/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/test/bot.js -------------------------------------------------------------------------------- /test/credentials.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/test/credentials.sample.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/typedoc.json -------------------------------------------------------------------------------- /typings/Embeds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/typings/Embeds.d.ts -------------------------------------------------------------------------------- /typings/FieldsEmbed.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/typings/FieldsEmbed.d.ts -------------------------------------------------------------------------------- /typings/base/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/typings/base/index.d.ts -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gazmull/discord-paginationembed/HEAD/typings/index.d.ts --------------------------------------------------------------------------------