Files
strings/lib/utils.d.ts
2023-05-25 15:53:05 -04:00

6 lines
253 B
TypeScript

import type { curry as _curry, 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;