mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
import type { Environment } from '../../src/types.js';
|
|
|
|
const env: Environment = {
|
|
THANKS: 'FOR ALL THE FISH',
|
|
ANSWER: 1,
|
|
};
|
|
export default env;
|