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 UppercaseFn extends Fn { out: IfInvoking>, string>; } export type InvokeUppercase = Pipe>>, Join>; interface Internal extends Fn { out: IfInvoking>, string>; } type InvokeInternal = Uppercase; export { UppercaseFn as Uppercase };