irby / passwordless-authenticator-poc

Detected usage of the any type JS-0323
Anti-pattern
Critical
a year agoa year old
Unexpected any. Specify a different type
180   * @throws {RequestTimeoutError}
181   * @throws {TechnicalError}
182   */
183  put(path: string, body?: any) {184    return this._fetch(path, {
185      method: "PUT",
186      body: JSON.stringify(body),
Unexpected any. Specify a different type
164   * @throws {RequestTimeoutError}
165   * @throws {TechnicalError}
166   */
167  post(path: string, body?: any) {168    return this._fetch(path, {
169      method: "POST",
170      body: JSON.stringify(body),
Unexpected any. Specify a different type
 36  status: number;
 37  statusText: string;
 38  url: string;
 39  _decodedJSON: any; 40
 41  constructor(xhr: XMLHttpRequest) {
 42    /**