diff options
-rw-r--r-- | packages/bun-types/bun.d.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/bun-types/bun.d.ts b/packages/bun-types/bun.d.ts index 6987a9226..306971d4c 100644 --- a/packages/bun-types/bun.d.ts +++ b/packages/bun-types/bun.d.ts @@ -51,6 +51,10 @@ declare module "bun" { * */ export const env: Env; + /** + * The raw arguments passed to the process, including flags passed to Bun. If you want to easily read flags passed to your script, consider using `process.argv` instead. + */ + export const argv: string[]; export const origin: string; /** |