import { Fn } from '../Fn'; import { IfInvoking, Input } from '../utils'; export interface EndsWith

extends Fn { out: IfInvoking>, boolean>; } export type InvokeEndsWith

= [S] extends [ `${string}${P}` ] ? true : false;