🚀 release: v3.0.0

This commit is contained in:
Amruth Pillai
2022-03-02 17:44:11 +01:00
parent 2175256310
commit 295172687b
352 changed files with 30932 additions and 0 deletions

7
apps/client/types/app.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
import React from 'react';
export type SidebarSection = {
id: string;
icon: React.ReactElement;
component: React.ReactElement;
};

15
apps/client/types/environment.d.ts vendored Normal file
View File

@ -0,0 +1,15 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
TZ: string;
ANALYZE?: boolean;
NODE_ENV: 'development' | 'production';
// Public Environment Variables
NEXT_PUBLIC_APP_VERSION?: string;
NEXT_PUBLIC_GOOGLE_CLIENT_ID?: string;
}
}
}
export {};

5
apps/client/types/next-env.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.