LogoRobo.js
Framework

ExtractOptionName<N>

Type Alias: ExtractOptionName<N>

type ExtractOptionName<N> = N extends `--${infer Name}` ? Name : N;

Extracts the option name from the --name format. Example: '--verbose' -> 'verbose', '--dry-run' -> 'dry-run'

Type Parameters

Type Parameter
N extends string

On this page