database seed and coloredConsole

This commit is contained in:
Timur Ercan
2023-01-11 11:44:35 +01:00
parent 5003e32e77
commit c024b03acc
7 changed files with 419 additions and 4203 deletions

View File

@ -3,6 +3,7 @@ import { ReactElement, ReactNode } from "react";
import type { AppProps } from "next/app";
import { NextPage } from "next";
import { SessionProvider } from "next-auth/react";
export { coloredConsole } from "@documenso/lib";
export type NextPageWithLayout<P = {}, IP = P> = NextPage<P, IP> & {
getLayout?: (page: ReactElement) => ReactNode;