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