/** * whether string `S` starts with prefix `Prefix` * * @since 0.0.2 */ export type StartsWith = S extends `${Prefix}${string}` ? true : false; //# sourceMappingURL=starts-with.d.ts.map