ストレージの getItem メソッド

getItem(
  key: string
): string | null;

指定したキーに関連付けられた現在の値を返します。指定したキーがない場合は null を返します。

let starsEarned = Number(GameSnacks.storage.getItem('starsEarned'));