UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

3 lines 164 B
/** Helper type to extract only the public interface of a class. */ export type PublicInterface<T> = Pick<T, keyof T>; //# sourceMappingURL=PublicInterface.d.ts.map