zipline/next-env.d.ts
2021-06-23 11:20:20 -07:00

14 lines
No EOL
297 B
TypeScript

/// <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
}
}
}