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