We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Receiving this error
const bypass = new API(); ^ TypeError: API is not a constructor
on this setup,
const API = require("./Puppeteer-Bypass/built/API"); const bypass = new API(); ( async () => { const result = await bypass.request("https://accounts.shopify.com", { method: "GET" }); console.log(result); } )();
tried also with const API = require("./Puppeteer-Bypass/built/API").default; and
const API = require("./Puppeteer-Bypass/built/API").default;
export class API { , export default class API {
on API.d.ts file..
any solutions?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Receiving this error
on this setup,
tried also with
const API = require("./Puppeteer-Bypass/built/API").default;
and
on API.d.ts file..
any solutions?
The text was updated successfully, but these errors were encountered: