| import { LightningElement } from 'lwc'; | 
| import boxorpieceType from './templates/boxorpieceType'; | 
|   | 
| export default class CustomLightningDatatable extends LightningElement { | 
|     static customTypes = { | 
|         boxorpieceType: { | 
|             template: boxorpieceType, | 
|             typeAttributes: ['customValueA'] | 
|         } | 
|     }; | 
| } |