UNPKG

ng-shopping-cart

Version:

An Angular component library to create shopping carts

14 lines (13 loc) 322 B
/** * An interface for the event emitted in the `onChange` emitter. */ export interface CartChangeEvent { /** * The location where the change took place */ change: 'items' | 'taxRate' | 'shipping' | 'format'; /** * The value in the cart after the update */ value: any; }