99
1010/* eslint-disable */
1111
12- declare var __PROFILE__: boolean ;
13- declare var __UMD__: boolean ;
14- declare var __EXPERIMENTAL__: boolean ;
15- declare var __VARIANT__: boolean ;
12+ declare const __PROFILE__: boolean ;
13+ declare const __UMD__: boolean ;
14+ declare const __EXPERIMENTAL__: boolean ;
15+ declare const __VARIANT__: boolean ;
1616
17- declare var __REACT_DEVTOOLS_GLOBAL_HOOK__: any ; /*?{
17+ declare const __REACT_DEVTOOLS_GLOBAL_HOOK__: any ; /*?{
1818 inject: ?((stuff: Object) => void)
1919};*/
2020
21- declare var globalThis: Object ;
21+ declare const globalThis: Object ;
2222
23- declare var queueMicrotask: ( fn : Function ) => void ;
24- declare var reportError : ( error : mixed ) = > void ;
25- declare var AggregateError: Class < Error > ;
23+ declare const queueMicrotask: ( fn : Function ) => void ;
24+ declare const reportError : ( error : mixed ) = > void ;
25+ declare const AggregateError: Class < Error > ;
2626
27- declare var FinalizationRegistry : any ;
27+ declare const FinalizationRegistry : any ;
2828
2929declare module 'create-react-class' {
30- declare var exports: React$CreateClass ;
30+ declare const exports: React$CreateClass ;
3131}
3232
3333// Flow hides the props of React$Element, this overrides it to unhide
@@ -43,7 +43,7 @@ declare opaque type React$Element<
4343 + ref : any ,
4444} ;
4545
46- declare var trustedTypes: {
46+ declare const trustedTypes: {
4747 isHTML : ( value : any ) => boolean ,
4848 isScript : ( value : any ) => boolean ,
4949 isScriptURL : ( value : any ) => boolean ,
@@ -89,22 +89,22 @@ declare module 'EventListener' {
8989}
9090
9191declare function __webpack_chunk_load__ ( id : string ) : Promise < mixed > ;
92- declare var __webpack_require__: ( ( id : string ) => any ) & {
92+ declare const __webpack_require__: ( ( id : string ) => any ) & {
9393 u : string => string ,
9494} ;
9595
9696declare function __turbopack_load__ ( id : string ) : Promise < mixed > ;
97- declare var __turbopack_require__: ((id: string) => any ) & {
97+ declare const __turbopack_require__: ((id: string) => any ) & {
9898 u : string => string ,
9999} ;
100100
101101declare module 'fs/promises' {
102- declare var access: ( path : string , mode ? : number ) => Promise < void > ;
103- declare var lstat : (
102+ declare const access: ( path : string , mode ? : number ) => Promise < void > ;
103+ declare const lstat : (
104104 path : string ,
105105 options ?: ?{ bigint ?: boolean } ,
106106 ) => Promise < mixed > ;
107- declare var readdir : (
107+ declare const readdir : (
108108 path : string ,
109109 options ?:
110110 | ?string
@@ -113,37 +113,37 @@ declare module 'fs/promises' {
113113 withFileTypes ?: ?boolean ,
114114 } ,
115115 ) => Promise < Buffer > ;
116- declare var readFile : (
116+ declare const readFile : (
117117 path : string ,
118118 options ?:
119119 | ?string
120120 | {
121121 encoding ?: ?string ,
122122 } ,
123123 ) => Promise < Buffer > ;
124- declare var readlink : (
124+ declare const readlink : (
125125 path : string ,
126126 options ?:
127127 | ?string
128128 | {
129129 encoding ?: ?string ,
130130 } ,
131131 ) => Promise < mixed > ;
132- declare var realpath : (
132+ declare const realpath : (
133133 path : string ,
134134 options ?:
135135 | ?string
136136 | {
137137 encoding ?: ?string ,
138138 } ,
139139 ) => Promise < mixed > ;
140- declare var stat : (
140+ declare const stat : (
141141 path : string ,
142142 options ?: ?{ bigint ?: boolean } ,
143143 ) => Promise < mixed > ;
144144}
145145declare module 'pg' {
146- declare var Pool : ( options : mixed ) => {
146+ declare const Pool : ( options : mixed ) => {
147147 query: ( query : string , values ?: Array < mixed > ) => void ,
148148 } ;
149149}
@@ -320,7 +320,7 @@ declare class AsyncLocalStorage<T> {
320320 enterWith ( store : T ) : void ;
321321}
322322
323- declare var async_hooks: {
323+ declare const async_hooks: {
324324 createHook ( callbacks : any ) : any ,
325325 executionAsyncId ( ) : number ,
326326} ;
@@ -332,7 +332,7 @@ declare module 'node:worker_threads' {
332332 }
333333}
334334
335- declare var Bun: {
335+ declare const Bun: {
336336 hash (
337337 input : string | $TypedArray | DataView | ArrayBuffer | SharedArrayBuffer ,
338338 ) : number ,
0 commit comments