Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix(naming): Fix interfaces naming convention from iName to Name
Browse files Browse the repository at this point in the history
  • Loading branch information
rmakara committed Oct 10, 2019
1 parent df67110 commit b1c6be7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { iCustomer } from "../customer/Customer";
import { Customer } from "../customer/Customer";
import { Order } from "./Order";
import { Salutation } from "../../system/salutation/Salutation";
export interface OrderCustomer {
Expand All @@ -11,7 +11,7 @@ export interface OrderCustomer {
company: string | null;
customerNumber: string | null;
customerId: string;
customer: iCustomer | null;
customer: Customer | null;
salutation: Salutation | null;
order: Order | null;
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Media } from "../../content/media/Media";
import { Plugin } from "../../framework/plugin/Plugin";
import CustomerCollection from "../customer/CustomerCollection";
import { CustomerCollection } from "../customer/CustomerCollection";
import { SalesChannelCollection } from "../../system/sales-channel/SalesChannelCollection";
import { Rule } from "../../content/rule/Rule";
import { PaymentMethodTranslationCollection } from "./PaymentMethodTranslationCollection";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { PromotionSetGroupCollection } from "./PromotionSetGroupCollection";
import { PromotionDiscountCollection } from "./PromotionDiscountCollection";
import { RuleCollection } from "../../content/rule/RuleCollection";
import { PromotionTranslationCollection } from "./PromotionTranslationCollection";
import CustomerCollection from "../customer/CustomerCollection";
import { CustomerCollection } from "../customer/CustomerCollection";
export interface Promotion {
name: string | null;
active: boolean;
Expand Down

0 comments on commit b1c6be7

Please sign in to comment.