mirror of
https://github.com/strapi/strapi.git
synced 2025-07-28 03:20:17 +00:00
17 lines
286 B
TypeScript
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;
|
|
};
|
|
}
|
|
}
|