mirror of
https://github.com/strapi/strapi.git
synced 2025-07-25 09:56:53 +00:00

* Update Yarn to v4.0.0 Signed-off-by: Sora Morimoto <sora@morimoto.io> * `yarn format` Signed-off-by: Sora Morimoto <sora@morimoto.io> --------- Signed-off-by: Sora Morimoto <sora@morimoto.io>
21 lines
360 B
TypeScript
21 lines
360 B
TypeScript
export {};
|
|
|
|
declare global {
|
|
interface Window {
|
|
strapi: {
|
|
backendURL: string;
|
|
isEE: boolean;
|
|
features: {
|
|
SSO: 'sso';
|
|
isEnabled: (featureName?: string) => boolean;
|
|
};
|
|
projectType: string;
|
|
telemetryDisabled: boolean;
|
|
flags: {
|
|
nps: boolean;
|
|
promoteEE: boolean;
|
|
};
|
|
};
|
|
}
|
|
}
|