undefined avatar

Type this code

Start typing to get racing

1
2
3
4
5
6
7
interface MyInterface {  id: number;  name: string;  properties: string[];}type MyShortType = Pick<MyInterface, 'name' | 'id'>;