export type WithRelated<T, R> = T & {
    related: Array<R>;
};
