mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 09:00:19 +00:00
16 lines
252 B
TypeScript
16 lines
252 B
TypeScript
![]() |
export {};
|
||
|
|
||
|
declare global {
|
||
|
interface Window {
|
||
|
strapi: {
|
||
|
backendURL: string;
|
||
|
isEE: boolean;
|
||
|
features: {
|
||
|
SSO: 'sso';
|
||
|
isEnabled: (featureName?: string) => boolean;
|
||
|
};
|
||
|
projectType: string;
|
||
|
};
|
||
|
}
|
||
|
}
|