1
Fork 0
mirror of https://github.com/diced/zipline.git synced 2025-03-28 23:11:22 -05:00
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;
}
}
}