UNPKG

stream-chat

Version:

JS SDK for the Stream Chat API

4 lines (3 loc) 103 B
export type DeepPartial<T> = { [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P]; };