├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── .yarnrc.yml ├── AVAILABLE_LANGUAGES.md ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── assets │ ├── highlight.css │ ├── main.js │ ├── search.js │ ├── style.css │ ├── widgets.png │ └── widgets@2x.png ├── classes │ ├── Brainly.html │ └── Cache.html ├── index.html ├── interfaces │ ├── Answer.html │ ├── Author.html │ ├── AuthorQuestionData.html │ ├── BrainlyResponse.html │ ├── Comment.html │ ├── CreatedInterface.html │ ├── OriginalAnswer.html │ ├── OriginalAuthor.html │ ├── OriginalComment.html │ ├── OriginalQuestion.html │ ├── OriginalQuestionAndSimilar.html │ ├── OriginalVerification.html │ └── Question.html ├── modules.html └── types │ ├── Attachments.html │ ├── BaseURLObject.html │ ├── CacheResult.html │ ├── CountryList.html │ ├── JsonRes.html │ ├── LanguageList.html │ ├── OriginalAttachments.html │ └── WorkType.html ├── package.json ├── renovate.json ├── src ├── index.ts └── lib │ ├── cache.ts │ ├── config.ts │ ├── fetcher.ts │ ├── main.ts │ ├── types.ts │ ├── util.ts │ └── worker.ts ├── tsconfig.json └── typedoc.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /AVAILABLE_LANGUAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/AVAILABLE_LANGUAGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/assets/widgets.png -------------------------------------------------------------------------------- /docs/assets/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/assets/widgets@2x.png -------------------------------------------------------------------------------- /docs/classes/Brainly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/classes/Brainly.html -------------------------------------------------------------------------------- /docs/classes/Cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/classes/Cache.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/Answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/Answer.html -------------------------------------------------------------------------------- /docs/interfaces/Author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/Author.html -------------------------------------------------------------------------------- /docs/interfaces/AuthorQuestionData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/AuthorQuestionData.html -------------------------------------------------------------------------------- /docs/interfaces/BrainlyResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/BrainlyResponse.html -------------------------------------------------------------------------------- /docs/interfaces/Comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/Comment.html -------------------------------------------------------------------------------- /docs/interfaces/CreatedInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/CreatedInterface.html -------------------------------------------------------------------------------- /docs/interfaces/OriginalAnswer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/OriginalAnswer.html -------------------------------------------------------------------------------- /docs/interfaces/OriginalAuthor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/OriginalAuthor.html -------------------------------------------------------------------------------- /docs/interfaces/OriginalComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/OriginalComment.html -------------------------------------------------------------------------------- /docs/interfaces/OriginalQuestion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/OriginalQuestion.html -------------------------------------------------------------------------------- /docs/interfaces/OriginalQuestionAndSimilar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/OriginalQuestionAndSimilar.html -------------------------------------------------------------------------------- /docs/interfaces/OriginalVerification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/OriginalVerification.html -------------------------------------------------------------------------------- /docs/interfaces/Question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/interfaces/Question.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/types/Attachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/types/Attachments.html -------------------------------------------------------------------------------- /docs/types/BaseURLObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/types/BaseURLObject.html -------------------------------------------------------------------------------- /docs/types/CacheResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/types/CacheResult.html -------------------------------------------------------------------------------- /docs/types/CountryList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/types/CountryList.html -------------------------------------------------------------------------------- /docs/types/JsonRes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/types/JsonRes.html -------------------------------------------------------------------------------- /docs/types/LanguageList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/types/LanguageList.html -------------------------------------------------------------------------------- /docs/types/OriginalAttachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/types/OriginalAttachments.html -------------------------------------------------------------------------------- /docs/types/WorkType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/docs/types/WorkType.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/src/lib/cache.ts -------------------------------------------------------------------------------- /src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/src/lib/config.ts -------------------------------------------------------------------------------- /src/lib/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/src/lib/fetcher.ts -------------------------------------------------------------------------------- /src/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/src/lib/main.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/src/lib/util.ts -------------------------------------------------------------------------------- /src/lib/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/src/lib/worker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansputera/brainly-scraper-languages/HEAD/typedoc.json --------------------------------------------------------------------------------