/** * whether string `S` ends with suffix `Suffix` */ export type EndsWith = S extends `${string}${Suffix}` ? true : false; //# sourceMappingURL=ends-with.d.ts.map