@vendure/core
Version:
A modern, headless ecommerce framework
10 lines (9 loc) • 512 B
TypeScript
import { CustomerGroup } from '../../../entity/customer-group/customer-group.entity';
import { TaxRate } from '../../../entity/tax-rate/tax-rate.entity';
import { TaxRateService } from '../../../service/services/tax-rate.service';
import { RequestContext } from '../../common/request-context';
export declare class TaxRateEntityResolver {
private taxRateService;
constructor(taxRateService: TaxRateService);
customerGroup(ctx: RequestContext, taxRate: TaxRate): Promise<CustomerGroup | undefined>;
}