declare namespace javax { namespace xml { namespace ws { /** * Holds a value of type T. * @since JAX-WS 2.0 */ // @ts-ignore class Holder extends java.lang.Object implements java.io.Serializable { /** * Creates a new holder with a null value. */ // @ts-ignore constructor() /** * Create a new holder with the specified value. * @param value The value to be stored in the holder. */ // @ts-ignore constructor(value: T) /** * The value contained in the holder. */ // @ts-ignore public value: T } } } }