// A container has things inside that can be seen and interacted with. /// <reference path="../Thing.ts" /> class Container extends Thing { public put (...things : Array<Thing>) { } }