From ca73572889078e941d0dd12a3686bcca936e01b8 Mon Sep 17 00:00:00 2001 From: Jefferson Rylee Date: Fri, 29 Mar 2024 19:57:06 +0800 Subject: [PATCH] Remove readonly for spec.alias args --- src/core/spec.types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/spec.types.ts b/src/core/spec.types.ts index abd8c9c..abe6f5a 100644 --- a/src/core/spec.types.ts +++ b/src/core/spec.types.ts @@ -39,7 +39,7 @@ export interface Spec { * @param args The alias arguments. * @returns `this` for chaining. */ - alias(alias: string | string[], args?: string | readonly string[]): this; + alias(alias: string | string[], args?: string | string[]): this; /** * Setup the options for the current option or command. *