style: Ran prettier.

This commit is contained in:
Spencer Brower
2023-05-25 17:32:29 -04:00
parent 7f8ef72f19
commit 337942657a
5 changed files with 15 additions and 24 deletions

4
lib/index.d.ts vendored
View File

@@ -1,5 +1,7 @@
export * from './trim';
export * from "./trim";
export declare const startsWith: import("ts-toolbelt/out/Function/Curry").Curry<(needle: string, haystack: string) => boolean>;
export declare const endsWith: import("ts-toolbelt/out/Function/Curry").Curry<(needle: string, haystack: string) => boolean>;
export declare const afterFirst: import("ts-toolbelt/out/Function/Curry").Curry<(separator: string, str: string) => string>;
export declare const afterLast: import("ts-toolbelt/out/Function/Curry").Curry<(separator: string, str: string) => string>;
export declare const beforeFirst: import("ts-toolbelt/out/Function/Curry").Curry<(separator: string, str: string) => string>;
export declare const beforeFirstWord: import("ts-toolbelt/out/Function/Curry").Curry<(str: string) => string>;