constructor()

in ts/src/client.ts [37:44]


  constructor(form: { [key: string]: any }, boundary: string) {
    super();
    this.form = form;
    this.keys = Object.keys(form);
    this.index = 0;
    this.boundary = boundary;
    this.streaming = false;
  }