refactor: not appropriate to put the global declaration in styles/types.ts

This commit is contained in:
Lin Onetwo 2022-12-21 18:06:37 +08:00 committed by DarkSky
parent eeb2be8664
commit cc790dcbc2
2 changed files with 7 additions and 6 deletions

View File

@ -121,9 +121,3 @@ export interface AffineThemeCSSVariables {
declare module '@emotion/react' {
export interface Theme extends AffineTheme {}
}
declare global {
interface Window {
CLIENT_APP?: boolean;
}
}

View File

@ -0,0 +1,7 @@
declare global {
interface Window {
CLIENT_APP?: boolean;
}
}
export {};