zipline/zip-env.d.ts

18 lines
375 B
TypeScript
Raw Normal View History

import type { PrismaClient } from '@prisma/client';
2022-06-20 12:25:22 -05:00
import type { Datasource } from 'lib/datasources';
import type { Config } from '.lib/types';
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;
}
interface ProcessEnv {
ZIPLINE_DOCKER_BUILD: string | '1';
}
}
2023-01-06 17:45:48 -05:00
}