UNPKG

@pushrocks/smartstring

Version:

handle strings in smart ways. TypeScript ready.

14 lines (13 loc) 382 B
/** * indent an array * @param stringArg * @param spaceAmount */ export declare const indent: (stringArg: string, spaceAmount: number) => string; /** * indents a string with prefix * @param stringArg * @param prefixArg */ export declare const indentWithPrefix: (stringArg: string, prefixArg: string) => string; export declare const normalize: (stringArg: string) => string;