/** * # The RemoteData Object * ### Description * The `RemoteData` object is used to represent the full data pulled from the third-party API for an object. * * ### Usage Example * TODO */ export interface RemoteData { /** The third-party API path that is being called. */ path: string; /** The data returned from the third-party for this object in its original, unnormalized format. */ data?: unknown; }