2020-02-05 12:58:27 +01:00
|
|
|
/**
|
|
|
|
* EGroupware eTemplate2 - JS Description object
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @subpackage api
|
2021-06-07 17:33:53 +02:00
|
|
|
* @link https://www.egroupware.org
|
2020-02-05 12:58:27 +01:00
|
|
|
* @author Nathan Gray
|
|
|
|
* @copyright Nathan Gray 2011
|
|
|
|
*/
|
|
|
|
|
2022-08-07 11:55:02 +02:00
|
|
|
import {Et2Image} from "./Et2Image/Et2Image";
|
|
|
|
import {Et2AppIcon} from "./Et2Image/Et2AppIcon";
|
|
|
|
import {Et2Avatar} from "./Et2Avatar/Et2Avatar";
|
|
|
|
import {Et2LAvatar} from "./Et2Avatar/Et2LAvatar";
|
2020-02-05 12:58:27 +01:00
|
|
|
|
|
|
|
/**
|
2022-05-13 11:59:13 +02:00
|
|
|
* @deprecated use Et2Image
|
2020-02-05 12:58:27 +01:00
|
|
|
*/
|
2022-08-07 11:55:02 +02:00
|
|
|
export type et2_image = Et2Image;
|
2020-02-05 12:58:27 +01:00
|
|
|
/**
|
2022-08-07 11:55:02 +02:00
|
|
|
* @deprecated use Et2AppIcon
|
|
|
|
*/
|
|
|
|
export type et2_appicon = Et2AppIcon;
|
2020-02-05 12:58:27 +01:00
|
|
|
/**
|
2022-08-07 11:55:02 +02:00
|
|
|
* @deprecated use Et2Avatar
|
|
|
|
*/
|
|
|
|
export type et2_avatar = Et2Avatar;
|
2020-02-05 12:58:27 +01:00
|
|
|
/**
|
2022-08-07 11:55:02 +02:00
|
|
|
* @deprecated use Et2Lavatar;
|
|
|
|
*/
|
|
|
|
export type et2_lavatar = Et2LAvatar;
|