mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 10:54:21 +08:00
12 lines
249 B
TypeScript
12 lines
249 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
GA_PROPERTY_ID: string
|
|
}
|
|
}
|
|
}
|
|
|
|
// If this file has no import/export statements (i.e. is a script)
|
|
// convert it into a module by adding an empty export statement.
|
|
export {}
|