-
-
Save morintd/121381bcd270a0c7385b5affdf0d1367 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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