@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/fesm2022/falcon-ng-tailwind.mjs +131 -113
- package/fesm2022/falcon-ng-tailwind.mjs.map +1 -1
- package/index.d.ts +11 -0
- package/package.json +1 -1
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
|
}
|