import { Map } from '../array'; import { Join } from '../array/Join'; import { Fn } from '../Fn'; import { I } from '../I'; import { If } from '../If'; import { Pipe } from '../Pipe'; import { IfInvoking, Input } from '../utils'; import { IsLowerAlpha } from './IsLowerAlpha'; import { Split } from './Split'; interface LowercaseFn extends Fn { out: IfInvoking>, string>; } export type InvokeLowercase = Pipe>>, Join>; interface Internal extends Fn { out: IfInvoking>, string>; } type InvokeInternal = Lowercase; export { LowercaseFn as Lowercase };