UNPKG

@lomray/microservice-payment-stripe

Version:

Stripe payment microservice based on NodeJS & inverted json.

13 lines (12 loc) 412 B
import { EntityManager, Repository } from 'typeorm'; import CustomerEntity from "../entities/customer.js"; declare class Customer extends Repository<CustomerEntity> { /** * Returns customer by account id */ /** * Returns customer by account id */ static getCustomerByAccountId(accountId: string, manager: EntityManager): Promise<CustomerEntity>; } export { Customer as default };