17 lines
375 B
TypeScript
17 lines
375 B
TypeScript
import type { PrismaClient } from '@prisma/client';
|
|
import type { Datasource } from 'lib/datasources';
|
|
import type { Config } from '.lib/types';
|
|
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface Global {
|
|
prisma: PrismaClient;
|
|
config: Config;
|
|
datasource: Datasource;
|
|
}
|
|
|
|
interface ProcessEnv {
|
|
ZIPLINE_DOCKER_BUILD: string | '1';
|
|
}
|
|
}
|
|
}
|