Implement the type version of ```Object.entries```
For example
```typescript
interface Model {
name: string;
age: number;
locations: string[] | null;
}
type modelEntries = ObjectEntries // ['name', string] | ['age', number] | ['locations', string[] | null];
```