/* eslint-disable no-underscore-dangle */ import { ObjectInterface } from '../interfaces/index.js' import type { Field } from '../types.js' class Collection extends ObjectInterface { /* totalItems: Field = { name :'totalItems', formField:{ type :'number', label:'Total Items', }, } */ constructor( kwargs: Record = {}, mutations = null, ) { super( kwargs, mutations, ) this._initialize(kwargs) } } export default Collection