@beesley/ts-env
Version:
An environment variable reader for TypeScript
24 lines • 935 B
TypeScript
import string from './string.js';
import stringOrThrow from './string-or-throw.js';
import boolean from './boolean.js';
import booleanOrThrow from './boolean-or-throw.js';
import number from './number.js';
import numberOrThrow from './number-or-throw.js';
import stringArray from './string-array.js';
import stringArrayOrThrow from './string-array-or-throw.js';
import numberArray from './number-array.js';
import numberArrayOrThrow from './number-array-or-throw.js';
declare const tsEnv: {
string: typeof string;
stringOrThrow: typeof stringOrThrow;
boolean: typeof boolean;
booleanOrThrow: typeof booleanOrThrow;
number: typeof number;
numberOrThrow: typeof numberOrThrow;
stringArray: typeof stringArray;
stringArrayOrThrow: typeof stringArrayOrThrow;
numberArray: typeof numberArray;
numberArrayOrThrow: typeof numberArrayOrThrow;
};
export default tsEnv;
//# sourceMappingURL=index.d.ts.map