Skip to content

Instantly share code, notes, and snippets.

@newerton
Created September 20, 2022 16:13
Show Gist options
  • Save newerton/7a03f788fa7558db9580cce99b337a2d to your computer and use it in GitHub Desktop.
Save newerton/7a03f788fa7558db9580cce99b337a2d to your computer and use it in GitHub Desktop.
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