UNPKG

@visulima/boxen

Version:

Util.format-like string formatting utility.

11 lines (10 loc) 427 B
/** * This file is a modified version of the original `boxen` package. * * MIT License * * Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com) */ import type { Options } from "./types.d.mts"; export declare const boxen: (text: string, options?: Options) => string; export type { Alignment, BaseOptions, BorderPosition, BorderStyle, DimensionOptions, Options, Spacer } from "./types.d.mts";