UNPKG

advanced-js-kit

Version:

Modern TypeScript utility library with tree-shaking support - Array, String, Number, Network, Sleep, and JWT utilities for JavaScript and TypeScript projects

9 lines (7 loc) 237 B
type TruncateTextOptions = { text: string; maxLength?: number; suffix?: string; }; declare function truncateText({ text, maxLength, suffix, }: TruncateTextOptions): string; export { type TruncateTextOptions, truncateText };