UNPKG

type-r2

Version:

Serializable, validated, and observable data layer for modern JS applications

6 lines (5 loc) 362 B
import { Record } from '../record'; import { TransactionOptions } from '../transactions'; import { CollectionCore } from './commons'; export declare function removeOne(collection: CollectionCore, el: Record | {} | string, options: TransactionOptions): Record; export declare function removeMany(collection: CollectionCore, toRemove: any[], options: any): any[];