UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

3 lines 226 B
/** Helper type to ensure that the given string starts with an lowercase letter. */ export type StartsWithLowercase<S> = S extends string ? Extract<S, Uncapitalize<S>> : never; //# sourceMappingURL=StartsWithLowercase.d.ts.map