UNPKG

183 BTypeScriptView Raw
1interface Options {
2 length?: number;
3 omission?: string;
4 separator?: string;
5}
6declare function truncate(str: string, options?: Options): string;
7export = truncate;