Hackers' Pub에 차단 구현하면서 지금 만들고 있는 코드인데… fromAccountToTarget/fromTargetToAccount 말고 좀 더 짧으면서 좋은 이름이 없을까? 🤔

export type RelationshipState =
  | "block"
  | "follow"
  | "request"
  | "none";

export interface Relationship {
  account: Account & { actor: Actor };
  target: Actor;
  fromAccountToTarget: RelationshipState;
  fromTargetToAccount: RelationshipState;
}
2