Skip to content

Instantly share code, notes, and snippets.

@morintd
Created March 10, 2024 17:12
Show Gist options
  • Save morintd/121381bcd270a0c7385b5affdf0d1367 to your computer and use it in GitHub Desktop.
Save morintd/121381bcd270a0c7385b5affdf0d1367 to your computer and use it in GitHub Desktop.
import { Board } from "../entities/board.entity";
export interface IBoardRepository {
findHistory(): Promise<Board[]>;
setHistory(boards: Board[]): Promise<void>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment