Interface Game<T>

interface Game<T> {
    comments?: string[];
    headers: Map<string, string>;
    moves: Node<T>;
}

Type Parameters

  • T

Properties

comments?: string[]
headers: Map<string, string>
moves: Node<T>

Generated using TypeDoc