egroupware/api/js/etemplate/et2_widget_selectbox.ts

24 lines
611 B
TypeScript
Raw Normal View History

2020-01-22 20:12:36 +01:00
/**
* EGroupware eTemplate2 - JS Selectbox object
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package etemplate
* @subpackage api
* @link https://www.egroupware.org
2020-01-22 20:12:36 +01:00
* @author Nathan Gray
* @author Andreas Stöckel
* @copyright Nathan Gray 2011
*/
import {Et2Select} from "./Et2Select/Et2Select";
import {Et2SelectReadonly} from "./Et2Select/Select/Et2SelectReadonly";
2020-01-22 20:12:36 +01:00
/**
* @deprecated use Et2Select
2020-01-22 20:12:36 +01:00
*/
export class et2_selectbox extends Et2Select{}
/**
* @deprecated use Et2SelectReadonly
*/
export type et2_selectbox_ro = Et2SelectReadonly;