@falcon-ng/tailwind 0.0.20 → 0.0.22

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/index.d.ts CHANGED
@@ -363,6 +363,17 @@ declare abstract class IGenericHttpClient<T> {
363
363
  * ```
364
364
  */
365
365
  abstract delete(destinationUrl: string, options?: IRequestOptions | any): Observable<T>;
366
+ /**
367
+ * @description
368
+ * Gets the underlying HttpClient instance
369
+ * @returns {HttpClient}
370
+ * @usageNotes
371
+ * The following snippet shows how to use this method
372
+ * ```ts
373
+ * this.genericHttpClientService.getHttpClient();
374
+ * ```
375
+ */
376
+ abstract getHttpClient(): HttpClient;
366
377
  static ɵfac: i0.ɵɵFactoryDeclaration<IGenericHttpClient<any>, never>;
367
378
  static ɵprov: i0.ɵɵInjectableDeclaration<IGenericHttpClient<any>>;
368
379
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@falcon-ng/tailwind",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.3",
6
6
  "@angular/core": "^20.1.3",