zipline/zip-env.d.ts
2021-08-28 11:32:09 -07:00

11 lines
No EOL
222 B
TypeScript

import type { PrismaClient } from '@prisma/client';
import type { Config } from './src/lib/types';
declare global {
namespace NodeJS {
interface Global {
prisma: PrismaClient;
config: Config;
}
}
}