import type { Args, Fn } from "../HKT"; export type StartsWith = S extends `${Prefix}${string}` ? true : false; export default interface StartsWithFn extends Fn<[string, string], boolean> { def: ([prefix, s]: Args) => StartsWith; }