UNPKG

tdesign-miniprogram

Version:
48 lines (47 loc) 1.03 kB
import { ImageProps } from '../image/index'; export interface TdImageViewerProps { backgroundColor?: { type: StringConstructor; value?: string; }; closeBtn?: { type: null; value?: string | boolean | object; }; deleteBtn?: { type: null; value?: string | boolean | object; }; imageProps?: { type: ObjectConstructor; value?: ImageProps; }; images?: { type: ArrayConstructor; value?: Array<string>; }; initialIndex?: { type: NumberConstructor; value?: Number; }; lazy?: { type: BooleanConstructor; value?: boolean; }; showIndex?: { type: BooleanConstructor; value?: boolean; }; usingCustomNavbar?: { type: BooleanConstructor; value?: boolean; }; visible?: { type: BooleanConstructor; value?: boolean; }; defaultVisible?: { type: BooleanConstructor; value?: boolean; }; }