@easbot/utils 0.3.3 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -473,7 +473,12 @@ declare namespace Fn {
473
473
  const fn: typeof createFn;
474
474
  }
475
475
 
476
- declare function loadEnv(): void;
476
+ interface LoadEnvOptions {
477
+ globalConfigPath?: string;
478
+ projectRoot?: string;
479
+ isDevelopment?: boolean;
480
+ }
481
+ declare function loadEnv(options?: LoadEnvOptions): void;
477
482
 
478
483
  interface GitResult {
479
484
  exitCode: number;
package/dist/index.d.ts CHANGED
@@ -473,7 +473,12 @@ declare namespace Fn {
473
473
  const fn: typeof createFn;
474
474
  }
475
475
 
476
- declare function loadEnv(): void;
476
+ interface LoadEnvOptions {
477
+ globalConfigPath?: string;
478
+ projectRoot?: string;
479
+ isDevelopment?: boolean;
480
+ }
481
+ declare function loadEnv(options?: LoadEnvOptions): void;
477
482
 
478
483
  interface GitResult {
479
484
  exitCode: number;