mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 21:41:34 +03:00
10 lines
105 B
TypeScript
10 lines
105 B
TypeScript
|
declare global {
|
||
|
interface Window {
|
||
|
ENV: {
|
||
|
FRAMEWORK: 'vue' | 'react'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {}
|