@type-r/models
Version:
The serializable type system for JS and TypeScript
6 lines (5 loc) • 304 B
TypeScript
import { CollectionCore, CollectionOptions, CollectionTransaction } from './commons';
export interface AddOptions extends CollectionOptions {
at?: number;
}
export declare function addTransaction(collection: CollectionCore, items: any[], options: AddOptions, merge?: boolean): CollectionTransaction;