zipline/zip-env.d.ts
dicedtomato 169a2ea562
Revert "Release 3.7.0 (#328)" (#347)
This reverts commit f9060f8ae7.
2023-03-26 20:40:41 -07:00

17 lines
No EOL
373 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';
}
}
}