Skip to content

Instantly share code, notes, and snippets.

@morintd
Created March 14, 2024 17:52
Show Gist options
  • Select an option

  • Save morintd/a3c7628c0cf8fa6a39ddda1a4c945dbc to your computer and use it in GitHub Desktop.

Select an option

Save morintd/a3c7628c0cf8fa6a39ddda1a4c945dbc to your computer and use it in GitHub Desktop.
export class BoardService {
private history: string[][] = [];
findHistory() {
return this.history;
}
setHistory(history: string[][]): void {
this.history = history;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment