mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 00:51:17 +00:00

chore chore: fix tests chore: fix workflow chore: tidy ups chore: test fixes chore: skip nx cache chore: pr amends chore: fix rogue incorrect import
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;
|
|
};
|
|
}
|
|
}
|