kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
12 lines (11 loc) • 445 B
TypeScript
export declare const patterns: {
commentLine: RegExp;
dash: RegExp;
whitespace: RegExp;
};
export interface Split {
A: string[];
endIndices: number[];
}
export declare const _split: (str: string, removeOuterQuotes?: boolean, returnIndices?: boolean, removeInlineOuterQuotes?: boolean) => string[] | Split;
export declare const split: (str: string, removeOuterQuotes?: boolean, removeInlineOuterQuotes?: boolean) => string[];