lemmy-js-client 0.17.2-rc.21 → 0.17.2-rc.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/http.d.ts CHANGED
@@ -133,9 +133,7 @@ import { UploadImage, UploadImageResponse } from "./types/others";
133
133
  * Helps build lemmy HTTP requests.
134
134
  */
135
135
  export declare class LemmyHttp {
136
- private apiUrl;
137
- private headers;
138
- private pictrsUrl;
136
+ #private;
139
137
  /**
140
138
  * Generates a new instance of LemmyHttp.
141
139
  * @param baseUrl the base url, without the vX version: https://lemmy.ml -> goes to https://lemmy.ml/api/vX
@@ -658,6 +656,4 @@ export declare class LemmyHttp {
658
656
  * Upload an image to the server.
659
657
  */
660
658
  uploadImage({ image, auth, }: UploadImage): Promise<UploadImageResponse>;
661
- private buildFullUrl;
662
- private wrapper;
663
659
  }