Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/lassiecoder/mutual-funding-app/server/node_modules/dotenv/types/

index.d.ts /cody/lassiecoder/mutual-funding-app/server/node_modules/dotenv/types/index.d.ts
27 Views
0 Comments
// TypeScript Version: 3.0
/// <reference types="node" />

export interface DotenvParseOptions {
/**
* You may turn on logg
test.ts /cody/lassiecoder/mutual-funding-app/server/node_modules/dotenv/types/test.ts
28 Views
0 Comments
import { config, parse } from "dotenv";

const env = config();
const dbUrl: string | null =
env.error || !env.parsed ? null :
tsconfig.json /cody/lassiecoder/mutual-funding-app/server/node_modules/dotenv/types/tsconfig.json
28 Views
0 Comments
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"noImplicitAny": true,
"noImplicitThis": true,

tslint.json /cody/lassiecoder/mutual-funding-app/server/node_modules/dotenv/types/tslint.json
21 Views
0 Comments
{
"extends": "dtslint/dtslint.json",
"rules": {
"strict-export-declare-modifiers": false
}
}