26 lines
533 B
TypeScript
Raw Normal View History

2024-03-15 20:24:37 +01:00
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;
};
}
}