UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

3 lines (2 loc) 119 B
/** Helper type to extract only the public interface of a class. */ export type PublicInterface<T> = Pick<T, keyof T>;