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

18 lines
363 B
TypeScript
Raw Permalink Normal View History

export interface FeatureFlagsConfig {
wishlist: boolean;
compare: boolean;
reviews: boolean;
2026-07-10 13:43:53 +04:00
questions: boolean;
comments: boolean;
recommendations: boolean;
blog: boolean;
chat: boolean;
analytics: boolean;
notifications: boolean;
coupons: boolean;
loyalty: boolean;
giftCards: boolean;
invoices: boolean;
[key: string]: boolean;
}