class WebGPUBinding { constructor() { this.bindingPoint = 0; this.name = ''; this.type = null; this.visibility = null; } setName( name ) { this.name = name; } } export default WebGPUBinding;