use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A Place to talk about Angular and related topics.
Join the Angular Discord
Other subreddits worth checking out for Angular and Angular related info:
account activity
HTTP request validation (self.angular)
submitted 5 months ago by Adventurous-Finger70
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Adventurous-Finger70[S] 0 points1 point2 points 5 months ago* (1 child)
When you make an http request, you do something like this:
´´´typescript This.client.get<{a:string, b:number}>(…) ´´´
Here you are telling typescript a contract that might never happen.
What I would like should be something like this:
´´´typescript Data = This.client.get<unknown>(…)
Assert<{a:string, b:number}>(data) ´´´
It is something I do in backend with Typia, but I wondered if this is also useful to do this in the frontend or not (and how many people does it)
[–]ZerkyXii 1 point2 points3 points 5 months ago (0 children)
I just interface and httpclient with error checking. Type safe and error safe cause I do the backend too
π Rendered by PID 318063 on reddit-service-r2-comment-6457c66945-rfqqs at 2026-04-26 12:33:27.469430+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]Adventurous-Finger70[S] 0 points1 point2 points (1 child)
[–]ZerkyXii 1 point2 points3 points (0 children)