import { Fn } from '../Fn'; import { IfInvoking, Input } from '../utils'; export interface StartsWith
extends Fn { out: IfInvoking>, boolean>; } export type InvokeStartsWith = [S] extends [ `${P}${string}` ] ? true : false;
= [S] extends [ `${P}${string}` ] ? true : false;