2023-05-05 18:47:48 +01:00

17 lines
286 B
TypeScript

export {};
declare global {
interface Window {
strapi: {
backendURL: string;
isEE: boolean;
features: {
SSO: 'sso';
isEnabled: (featureName?: string) => boolean;
};
projectType: string;
telemetryDisabled: boolean;
};
}
}