UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

3 lines 224 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; //# sourceMappingURL=StartsWithUppercase.d.ts.map