import { ConstructorCollectionInput } from './Constructor'; import { URIS } from 'fp-ts/HKT'; import { IndexReaderCollectionInput } from './IndexReaderCollection'; import { ReaderCollectionInput } from './ReaderCollection'; import { SubsetCollectionInput } from './Subset'; import { IndexWriteCollectionInput } from './IndexWriterCollection'; import { Typeclass } from './typeclass'; export { URIS }; export interface Options extends ConstructorCollectionInput, ReaderCollectionInput, IndexReaderCollectionInput, SubsetCollectionInput, IndexWriteCollectionInput { } export interface Collection extends Typeclass { } export interface InitCollection { (a: Options, safe?: boolean): Collection; } declare const make: InitCollection; export default make;