UNPKG

@o3r/core

Version:
7 lines 168 B
/** * Type expert to extend only public fields of a class */ export type InterfaceOf<T> = { [P in keyof T]: T[P]; }; //# sourceMappingURL=interface-utils.d.ts.map