UNPKG

@sberdevices/plasma-temple

Version:

SberDevices CanvasApp Templates.

16 lines 469 B
import { AnyObject, MediaObject } from '../../types'; export declare type GalleryCardParams<T extends AnyObject = AnyObject> = T & { id: string | number; label: string; position: number; image: MediaObject; description?: string; tag?: string; time?: string; }; export interface GalleryCardProps<T extends AnyObject = AnyObject> { card: GalleryCardParams<T>; index: number; focused?: boolean; } //# sourceMappingURL=types.d.ts.map