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