UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

5 lines (4 loc) 179 B
/** Helper type to ensure that the given string starts with an uppercase letter. */ export type StartsWithUppercase<S> = S extends string ? Extract<S, Capitalize<S>> : never;