18 lines
363 B
TypeScript
18 lines
363 B
TypeScript
export interface FeatureFlagsConfig {
|
|
wishlist: boolean;
|
|
compare: boolean;
|
|
reviews: boolean;
|
|
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;
|
|
}
|