isoscribe
Version:
An isomorphic logging utility for any JavaScript runtime, providing structured, styled, and extensible logs.
15 lines (14 loc) • 374 B
TypeScript
type BulletType = "dashes" | "numbers";
type PrintAsBulletsOptions = {
/**
* The type of bullet that is displayed
* @default dashes
*/
bulletType?: BulletType;
};
/**
* Prints an array of strings as an indented set
* of bullet points.
*/
export declare function printAsBullets(strArr: string[], options?: PrintAsBulletsOptions): string;
export {};