Skip to content

Commit

Permalink
feat: Add enum for CartLineItemType {product, promotion, credit, custom}
Browse files Browse the repository at this point in the history
  • Loading branch information
rmakara committed Oct 24, 2019
1 parent 4335fe4 commit 235c395
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export enum CartLineItemType {
PRODUCT = "product",
CREDIT = "credit",
CUSTOM = "custom",
PROMOTION = "promotion"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export enum LineItemType {
PRODUCT = "product",
CREDIT = "credit",
CUSTOM = "custom",
PROMOTION = "promotion"
}

0 comments on commit 235c395

Please sign in to comment.