f37b4bb2ee
* build(deps): bump next from 11.0.0 to 11.1.0 Bumps [next](https://github.com/vercel/next.js) from 11.0.0 to 11.1.0. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v11.0.0...v11.1.0) --- updated-dependencies: - dependency-name: next dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fix(deps): nextjs 11 -> 11.1 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: diced <pranaco2@gmail.com>
11 lines
No EOL
221 B
TypeScript
11 lines
No EOL
221 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
|
|
}
|
|
}
|
|
} |