| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- export interface TdImageViewerProps {
- backgroundColor?: {
- type: StringConstructor;
- value?: string;
- };
- closeBtn?: {
- type: null;
- value?: string | boolean | object;
- };
- deleteBtn?: {
- type: null;
- value?: string | boolean | object;
- };
- 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;
- };
- }
|