/** * @license * Copyright 厦门乾元盛世科技有限公司 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file. */ import { EventEmitter } from '@angular/core'; import { WeUIFile } from '../uploader/weui.uploader'; export declare class WeUIGallery { /** * 背景图片,如:url(./images/pic_160.png) */ image: WeUIFile; /** * 是否显示删除按钮 */ canDelete: boolean; /** * 删除事件 */ delete: EventEmitter; /** * 已显示否 */ shown: boolean; _show: boolean; constructor(); /** * 显示图片 */ show(): void; /** * 隐藏图片 */ hide(): void; }