EASYAIuniappNewUI/node_modules/licia/truncate.d.ts
2025-02-08 18:50:38 +08:00

11 lines
170 B
TypeScript

declare function truncate(
txt: string,
width: number,
options?: {
ellipsis?: string;
separator: string;
}
): string;
export = truncate;