/** Helper type to ensure that the given string starts with an uppercase letter. */ export type StartsWithUppercase = S extends string ? Extract> : never; //# sourceMappingURL=StartsWithUppercase.d.ts.map