zipline/zip-env.d.ts
2022-01-03 15:17:47 -08:00

12 lines
No EOL
252 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;
ratelimit: Set<string>;
}
}
}