UNPKG

pig-dam-core

Version:

Library that should be included in every Pig DAM project we build

17 lines 539 B
/** * Date: 6/2/20 * Time: 10:51 PM * @license MIT (see project's LICENSE file) */ /** * Indents lines with the message. We use it for indenting nested errors * @param text - text to indent * @param depth - number of multiples of `indent` * @param indent - the text to use for each `depth` * @param skip - how many lines to skip before we start indenting */ export declare function indentText(text: string, depth: number, { indent, skip }?: { indent?: string; skip?: number; }): string; //# sourceMappingURL=text.d.ts.map