24 lines
431 B
TypeScript
Raw Permalink Normal View History

export {};
declare global {
interface Window {
strapi: {
backendURL: string;
isEE: boolean;
features: {
SSO: 'sso';
isEnabled: (featureName?: string) => boolean;
};
2024-02-20 05:32:14 +01:00
future: {
isEnabled: (name: string) => boolean;
};
projectType: string;
2023-05-05 18:47:48 +01:00
telemetryDisabled: boolean;
flags: {
nps: boolean;
promoteEE: boolean;
};
};
}
}