/**
 * 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<DocumentType> extends
  BasicCollectionInterface<DocumentType>,
  CoconutInterface<DocumentType> {
}

export default CollectionInterface;
