Skip to content

Instantly share code, notes, and snippets.

View slowbackspace's full-sized avatar
🧠
wannabe prompt engineer

Maroš slowbackspace

🧠
wannabe prompt engineer
View GitHub Profile
@slowbackspace
slowbackspace / RequiredKey.ts
Last active August 30, 2019 07:50
Typescript utility type which constructs a type consisting of all properties of T and making K required.
export type RequiredKey<T, K extends keyof T> = Omit<T, K> & Required<Pick<T, K>>;