zipline/next-env.d.ts

14 lines
297 B
TypeScript
Raw Normal View History

2021-06-23 13:20:20 -05:00
/// <reference types="next" />
/// <reference types="next/types/global" />
import type { PrismaClient } from '@prisma/client';
import type { Config } from './src/lib/types';
declare global {
namespace NodeJS {
interface Global {
prisma: PrismaClient;
config: Config
}
}
}