epic-games-store-crawler
Version:
A crawler to retrieve store data from the Epic Games store
11 lines (10 loc) • 366 B
TypeScript
/** Constants for Epic Games crawler */
declare enum Constant {
/** Epic Games GraphQL base URL */
GQL_BASE = "https://graphql.epicgames.com/graphql",
/** Epic Games store content base URL */
SC_BASE = "https://store-content.ak.epicgames.com/api",
/** Epic Games store content blog path */
SC_BLOG = "content/blog"
}
export default Constant;