UNPKG

phaser-jsx

Version:
6 lines (5 loc) 162 B
export type RecursivePartial<Type> = { [Property in keyof Type]?: Type[Property] extends object ? RecursivePartial<Type[Property]> : Type[Property]; };