zipline/zip-env.d.ts

18 lines
375 B
TypeScript
Raw Normal View History

import type { PrismaClient } from '@prisma/client';
2022-06-20 10:25:22 -07:00
import type { Datasource } from 'lib/datasources';
import type { Config } from '.lib/types';
declare global {
namespace NodeJS {
interface Global {
prisma: PrismaClient;
2021-08-28 11:32:09 -07:00
config: Config;
2023-01-06 14:45:48 -08:00
datasource: Datasource;
}
interface ProcessEnv {
ZIPLINE_DOCKER_BUILD: string | '1';
}
}
2023-01-06 14:45:48 -08:00
}