mirror of
https://github.com/strapi/strapi.git
synced 2025-08-24 00:27:13 +00:00
26 lines
533 B
TypeScript
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;
|
|
};
|
|
}
|
|
}
|