Files
marketplaces/src/app/shared/models/config/feature-flags.model.ts

15 lines
292 B
TypeScript

export interface FeatureFlagsConfig {
wishlist: boolean;
compare: boolean;
reviews: boolean;
blog: boolean;
chat: boolean;
analytics: boolean;
notifications: boolean;
coupons: boolean;
loyalty: boolean;
giftCards: boolean;
invoices: boolean;
[key: string]: boolean;
}