/** 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;
