/**
 * @module interfaces/core/common
 */
/**
 * @name					ICommonBase
 *
 * @description		A union base type used within the interfaces for
 *                the 'handlers' and the 'transforms'.
 *
 * @author				Datr.Tech Admin <admin@datr.tech>
 * @version				0.3.2
 */
export type ICommonBase = boolean | number | string;
