Skip to content

Instantly share code, notes, and snippets.

@PCreations
Created July 17, 2024 08:22
Show Gist options
  • Select an option

  • Save PCreations/d0caba97c056c0400a933de56b1f6d22 to your computer and use it in GitHub Desktop.

Select an option

Save PCreations/d0caba97c056c0400a933de56b1f6d22 to your computer and use it in GitHub Desktop.
64fdd9babe19.diff
-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