getTotalProducts(): Promise<number> {
return this.productsRepository.count();
}getTestProducts(): GetTestProducts {
return {
total: this.productsService.getTotalProducts()
};
}export interface GetTestProducts {
total: Promise<number>
}{
"total": {}
}