/** * Complete collection interface that includes basic and coconut interfaces. * @author Gabe Abrams */ // Import sub-interfaces import CoconutInterface from '../coconut-types/CoconutInterface'; import BasicCollectionInterface from './BasicCollectionInterface'; interface CollectionInterface extends BasicCollectionInterface, CoconutInterface { } export default CollectionInterface;