type-fest
Version:
A collection of essential TypeScript types
38 lines (30 loc) • 744 B
TypeScript
import type {Except} from './except';
import type {Simplify} from './simplify';
/**
Create a type that changes the type of the given keys.
Use-cases:
- Creating variations of a base model.
- Fixing incorrect external types.
```
import type {SetFieldType} from 'type-fest';
type MyModel = {
id: number;
createdAt: Date;
updatedAt: Date;
};
type MyModelApi = SetFieldType<MyModel, 'createdAt' | 'updatedAt', string>;
// {
// id: number;
// createdAt: string;
// updatedAt: string;
// }
```
*/
export type SetFieldType<BaseType, Keys extends keyof BaseType, NewType> =
Simplify<
Except<BaseType, Keys> &
Record<Keys, NewType>
>;