bulk_result.d.ts 94 B

1234
  1. export interface BulkResult<T = any> {
  2. readonly items: T[];
  3. readonly errors: any[];
  4. }