UNPKG

kintone-as-code

Version:

A CLI tool for managing kintone applications as code with type-safe TypeScript schemas

13 lines 557 B
/** * Determines if an env file should be loaded based on CLI arguments and security checks * @param argv - Command line arguments * @param envFilePath - Path to the env file to check * @returns true if the file should be loaded, false otherwise */ export declare const shouldLoadEnvFile: (argv: any, envFilePath: string) => boolean; /** * Sets up environment variable loading based on CLI arguments * @param argv - Command line arguments */ export declare const setupEnvLoading: (argv: any) => Promise<void>; //# sourceMappingURL=env-utils.d.ts.map