Files
strings/lib/utils.d.ts
2023-06-15 13:43:40 -04:00

7 lines
313 B
TypeScript

import type { curry as _curry, until as _until, when as _when } from "ramda";
export declare const curry: typeof _curry;
export declare const isEmpty: (str: string) => boolean;
export declare const tail: (str: string) => string;
export declare const when: typeof _when;
export declare const until: typeof _until;