|
|
|
|
|
by revskill
1109 days ago
|
|
Say you have a function in the backend, for example in typescript: function handler(a: A, b: B) {} With a suitable tooling, you can generate the type for frontend to call handler(a, b) in a type-safe way, which could be validated on the backend and frontend. So you're just a "generation" step away from bluring BE/FE communication. |
|