./knowledge-base/frontend/src/utils/eraUtils.ts

/**
 * 時代ラベル定数(9種類の固定ラベル)
 * フロントエンド全体で時代の選択肢として使用する。
 */
export const ERA_LABELS = [
  "室町以前",
  "江戸時代前期",
  "江戸時代後期",
  "幕末",
  "明治",
  "大正",
  "昭和(戦前・戦中)",
  "昭和(戦後)",
  "平成~",
] as const;

export type EraLabel = (typeof ERA_LABELS)[number];