Created
July 17, 2024 08:22
-
-
Save PCreations/d0caba97c056c0400a933de56b1f6d22 to your computer and use it in GitHub Desktop.
64fdd9babe19.diff
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
| -1,3 +1,4 @@ | |
| export abstract class BookRepository { | |
| abstract save(book: { title: string }): Promise<void>; | |
| + abstract doesBookExist(title: string): Promise<boolean>; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment