mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 02:46:55 +00:00
[web] Move window object typescript declaration file to a more general location (#7244)
GitOrigin-RevId: 87e30b16fa48e1aaebba76bed19d8c583a4cf1ca
This commit is contained in:
parent
a079aa1fae
commit
2fc4c82593
2 changed files with 12 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
|||
"frontend/js/**/*.*",
|
||||
"modules/**/frontend/js/**/*.*",
|
||||
"test/frontend/**/*.*",
|
||||
"modules/**/test/frontend/**/*.*"
|
||||
"modules/**/test/frontend/**/*.*",
|
||||
"types"
|
||||
]
|
||||
}
|
||||
|
|
10
services/web/types/window.ts
Normal file
10
services/web/types/window.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
declare global {
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
interface Window {
|
||||
sl_debugging: boolean
|
||||
user: {
|
||||
id: string
|
||||
}
|
||||
}
|
||||
}
|
||||
export {} // pretend this is a module
|
Loading…
Reference in a new issue