Replaces the type of some keys in given Input.
type User = { name: string; age: number };type ReallyOldUser = ReplaceType<User, "age", bigint>;
Replaces the type of some keys in given Input.
Example