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