UNPKG

property-4-json

Version:

Automatically enrich files containing JavaScript objects with new properties

16 lines (12 loc) 180 B
interface Engine { power: string; } class Car { engine: Engine; cylinders: number; } class Bycicle { size: number; } export { Engine }; export { Car, Bycicle };