constructor()

in src/fetchApi.ts [5:11]


  constructor(req: Request | string) {
    if (typeof req === "string") {
      this.req = new Request(req);
    } else {
      this.req = req;
    }
  }