namespace formgen.input { /** */ export class class_input_empty implements interface_input { /** */ public constructor( ) { } /** * [implementation] */ public setup( element_target : Element ) : Promise { return Promise.resolve(undefined); } /** * [implementation] */ public read( ) : Promise { return Promise.resolve(null); } /** * [implementation] */ public write( value : null ) : Promise { return Promise.resolve(undefined); } } }