Created
September 20, 2022 16:13
-
-
Save newerton/7a03f788fa7558db9580cce99b337a2d 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 { Book } from '../entities'; | |
export abstract class ICrmServices { | |
abstract bookAdded(book: Book): Promise<boolean>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment