- Published
- Author
- Sujay
Get all TODO comments in rails application using
rails notesAt Codemancers, we believe every day is an opportunity to grow. This section is where our team shares bite-sized discoveries, technical breakthroughs and fascinating nuggets of wisdom we've stumbled upon in our work.
rails notescloudflared tunnel --url http://localhost:Pick utility allows us to create a new type by picking a subset of properties from an existing type. Instead of duplicating field declarations we can use Pick utility to extract new types.type AdminUser = {
id: number;
name: string;
email: string;
phone: string;
password: string;
age: number;
isAdmin: boolean;
...
}type BasicUser = Pick;Showing 45 to 47 of 82 results
Codemancers can bring your vision to life and help you achieve your goals