21 lines
360 B
TypeScript
Raw Normal View History

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