PlainObject: Record<PropertyKey, unknown>

This is a dummy type that acts as a signal to say the type should be plain object with shape rather than prototype object of type NOTE: This is useful in network client interface where we enforce that the input and output for the network call must be plain object, so as to force proper handling (i.e. deserialize/serialize) but also signal from documentation perspective about the type/shape of the plain object

Type Parameters

  • T = unknown