2024-03-21 18:20:12 +01:00

26 lines
533 B
TypeScript

export {};
declare global {
interface Window {
strapi: {
backendURL: string;
isEE: boolean;
features: {
SSO: 'sso';
AUDIT_LOGS: 'audit-logs';
REVIEW_WORKFLOWS: 'review-workflows';
isEnabled: (featureName?: string) => boolean;
};
future: {
isEnabled: (name: string) => boolean;
};
flags: {
nps?: boolean;
promoteEE?: boolean;
};
projectType: 'Community' | 'Enterprise';
telemetryDisabled: boolean;
};
}
}