This repository has been archived on 2023-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
futureporn-qa/environment.d.ts

21 lines
495 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
TMPDIR: string;
B2_BUCKET: string;
B2_ENDPOINT: string;
B2_KEY: string;
B2_REGION: string;
B2_SECRET: string;
STRAPI_API_KEY: string;
MUX_TOKEN_SECRET: string;
MUX_TOKEN_ID: string;
}
}
}
// If this file has no import/export statements (i.e. is a script)
// convert it into a module by adding an empty export statement.
export {}