UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

15 lines (14 loc) 529 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Calculates the maximum width of a multi-line ASCII art string. * @param asciiArt The ASCII art string. * @returns The length of the longest line in the ASCII art. */ export declare const getAsciiArtWidth: (asciiArt: string) => number; export declare function toCodePoints(str: string): string[]; export declare function cpLen(str: string): number; export declare function cpSlice(str: string, start: number, end?: number): string;