2021-08-13 14:57:05 -05:00
|
|
|
import type { PrismaClient } from '@prisma/client';
|
2022-06-20 12:25:22 -05:00
|
|
|
import type { Datasource } from 'lib/datasources';
|
2022-03-03 01:04:56 -05:00
|
|
|
import type { Config } from '.lib/types';
|
2021-08-13 14:57:05 -05:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
namespace NodeJS {
|
|
|
|
interface Global {
|
|
|
|
prisma: PrismaClient;
|
2021-08-28 13:32:09 -05:00
|
|
|
config: Config;
|
2023-01-06 17:45:48 -05:00
|
|
|
datasource: Datasource;
|
2022-02-19 23:17:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
interface ProcessEnv {
|
|
|
|
ZIPLINE_DOCKER_BUILD: string | '1';
|
2021-08-13 14:57:05 -05:00
|
|
|
}
|
|
|
|
}
|
2023-01-06 17:45:48 -05:00
|
|
|
}
|