-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathImageList.d.ts
33 lines (21 loc) · 1.09 KB
/
ImageList.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import {
Component
} from 'react'
import {
SimpleBaseProps
} from './Base'
export interface ImageListProps extends SimpleBaseProps<ImageList> {
masonry?: boolean;
withTextProtection?: boolean;
}
export interface ImageListItemProps extends SimpleBaseProps<ImageListItem> { }
export interface ImageListImageAspectContainerProps extends SimpleBaseProps<ImageListImageAspectContainer> { }
export interface ImageListImageProps extends SimpleBaseProps<ImageListImage> { }
export interface ImageListSupportingProps extends SimpleBaseProps<ImageListSupporting> { }
export interface ImageListLabelProps extends SimpleBaseProps<ImageListLabel> { }
export class ImageList extends Component<ImageListProps> { }
export class ImageListItem extends Component<ImageListItemProps> { }
export class ImageListImageAspectContainer extends Component<ImageListImageAspectContainerProps> { }
export class ImageListImage extends Component<ImageListImageProps> { }
export class ImageListSupporting extends Component<ImageListSupportingProps> { }
export class ImageListLabel extends Component<ImageListLabelProps> { }