mirror of
https://github.com/strapi/strapi.git
synced 2025-07-24 01:18:17 +00:00
19 lines
401 B
TypeScript
19 lines
401 B
TypeScript
![]() |
export {};
|
||
|
|
||
|
declare global {
|
||
|
interface Window {
|
||
|
strapi: {
|
||
|
backendURL: string;
|
||
|
telemetryDisabled: boolean;
|
||
|
projectType: 'Enterprise' | 'Community';
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
import { StrapiTheme } from '@strapi/design-system';
|
||
|
|
||
|
declare module 'styled-components' {
|
||
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||
|
export interface DefaultTheme extends StrapiTheme {}
|
||
|
}
|