UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

5 lines (3 loc) 196 B
import type { StartsWithLowercase } from "./StartsWithLowercase"; /** Helper type to match all of the lowercase keys of an object. */ export type LowercaseKeys<T> = StartsWithLowercase<keyof T>;