@vendure/core
Version:
A modern, headless ecommerce framework
14 lines (13 loc) • 450 B
TypeScript
import { DeepPartial } from '@vendure/common/lib/shared-types';
import { Customer } from '../customer/customer.entity';
import { HistoryEntry } from './history-entry.entity';
/**
* @description
* Represents an event in the history of a particular {@link Customer}.
*
* @docsCategory entities
*/
export declare class CustomerHistoryEntry extends HistoryEntry {
constructor(input: DeepPartial<CustomerHistoryEntry>);
customer: Customer;
}