Format docs using linter and prettier.

This commit is contained in:
Spencer Ofwiti
2021-05-11 20:51:48 +03:00
parent 5228842e61
commit 208c448984
309 changed files with 11327 additions and 3307 deletions

View File

@@ -166,8 +166,8 @@
<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="20"
class="link-to-prism">src/app/_interceptors/logging.interceptor.ts:20</a></div>
<div class="io-line">Defined in <a href="" data-line="17"
class="link-to-prism">src/app/_interceptors/logging.interceptor.ts:17</a></div>
</td>
</tr>
@@ -238,18 +238,15 @@ import {
HttpHandler,
HttpEvent,
HttpInterceptor,
HttpResponse
HttpResponse,
} from &#x27;@angular/common/http&#x27;;
import {Observable} from &#x27;rxjs&#x27;;
import {LoggingService} from &#x27;@app/_services/logging.service&#x27;;
import {finalize, tap} from &#x27;rxjs/operators&#x27;;
import { Observable } from &#x27;rxjs&#x27;;
import { LoggingService } from &#x27;@app/_services/logging.service&#x27;;
import { finalize, tap } from &#x27;rxjs/operators&#x27;;
@Injectable()
export class LoggingInterceptor implements HttpInterceptor {
constructor(
private loggingService: LoggingService
) {}
constructor(private loggingService: LoggingService) {}
intercept(request: HttpRequest&lt;unknown&gt;, next: HttpHandler): Observable&lt;HttpEvent&lt;unknown&gt;&gt; {
return next.handle(request);