forked from swapnil.bendal/TypeScript-Backend-Template
3 lines
101 B
TypeScript
3 lines
101 B
TypeScript
|
|
export interface IMessageBroker {
|
||
|
|
NotifyToPromotionService(product: unknown): Promise<boolean>;
|
||
|
|
}
|