Skip to content

Instantly share code, notes, and snippets.

@bharat-tiwari
Last active March 14, 2018 17:05
Show Gist options
  • Save bharat-tiwari/c09f27fa3c7b7ff935faf5df0a7b9644 to your computer and use it in GitHub Desktop.
Save bharat-tiwari/c09f27fa3c7b7ff935faf5df0a7b9644 to your computer and use it in GitHub Desktop.
Item Details Component
import {Component,Input} from '@angular/core';
@Component({
selector: 'item-details',
templateUrl: 'item-details.html',
})
export class ItemDetails {
@Input() item;
@Input() notifyItemProcessed: () => void;
suppliedQuantity: number;
scannedUPC: string;
errors: string[];
constructor(){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment