fix: re-built code.

This commit is contained in:
Spencer Brower
2023-06-15 13:43:40 -04:00
parent 559217ac60
commit f46b68c709
8 changed files with 41 additions and 35 deletions

3
lib/shorten.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
export declare const shorterThan: import("ts-toolbelt/out/Function/Curry").Curry<(maxChars: number, str: string) => boolean>;
export declare const shorten: import("ts-toolbelt/out/Function/Curry").Curry<(maxChars: number, strategy: any) => (init: unknown) => unknown>;
export declare const removeWordsFromBeginning: import("ts-toolbelt/out/Function/Curry").Curry<(maxChars: number, str: string) => unknown>;