From 8109da02a069bf17ddc0de41ec227a4720a049c5 Mon Sep 17 00:00:00 2001 From: John Gee Date: Sat, 21 Jan 2023 19:19:17 +1300 Subject: [PATCH] Remove unused property --- typings/index.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 20a218bc0..695c3bd25 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -89,7 +89,6 @@ export class Option { optional: boolean; // A value is optional when the option is specified. variadic: boolean; mandatory: boolean; // The option must have a value after parsing, which usually means it must be specified on command line. - optionFlags: string; short?: string; long?: string; negate: boolean;