UNPKG

532 BTypeScriptView Raw
1import Option from './Option';
2export declare const removeBrackets: (v: string) => string;
3export declare const findAllBrackets: (v: string) => {
4 required: boolean;
5 value: string;
6 variadic: boolean;
7}[];
8export declare const getMinimistOptions: (options: Option[]) => {
9 default: {};
10 boolean: string[];
11 alias: {};
12};
13export declare const findLongest: (arr: string[]) => string;
14export declare const padRight: (str: string, length: number) => string;
15export declare const camelcase: (input: string) => string;