UNPKG

civ7-modding-tools

Version:
4 lines (3 loc) 106 B
export type TPartialRequired<T, K extends keyof T> = Partial<T> & { [P in K]-?: NonNullable<T[P]>; };