UNPKG

tmemory

Version:

A terminal-based Memory card game built with React Ink. Features multiple grid sizes, AI opponent, and high scores.

7 lines (6 loc) 230 B
import React from 'react'; import { HighScoreContextValue } from './types.js'; export declare const HighScoreProvider: React.FC<{ children: React.ReactNode; }>; export declare const useHighScores: () => HighScoreContextValue;