diff --git a/src/lib/options.ts b/src/lib/options.ts index 2935d2c..41a28c2 100644 --- a/src/lib/options.ts +++ b/src/lib/options.ts @@ -14,7 +14,7 @@ type ParsedOptions

= { error?: string; }; -export function getOpt

( +export function getOpt( argv: TextPiece[], options: P, procBody: ( @@ -60,7 +60,7 @@ export function getOpt

( } } -export function getOptRaw

( +export function getOptRaw( argv: TextPiece[], options: P, procBody: ( @@ -95,7 +95,7 @@ export function getOptRaw

( const SWITCH_REGEX = /^-([^]*)/; -function getOptCore

( +function getOptCore( argv: TextPiece[], options: P ): [ParsedOptions, TextPiece[]] {