@sberdevices/plasma-temple
Version:
SberDevices CanvasApp Templates.
24 lines • 733 B
TypeScript
import React from 'react';
import { UnifiedComponentProps } from '../../../../registry/types';
export interface CatalogCellProps {
onClick: React.MouseEventHandler<HTMLDivElement>;
image: string;
focused: boolean;
}
export interface StoreCellProps {
onClick: React.MouseEventHandler<HTMLDivElement>;
focused: boolean;
}
export interface NavColProps {
focused: boolean;
onCatalogOpen: () => void;
onStoreInfoClick: () => void;
catalogImage: string;
}
declare type PlatformComponents = {
CatalogCard: CatalogCellProps;
StoreCard: StoreCellProps;
};
export declare const NavCol: React.FC<UnifiedComponentProps<NavColProps, PlatformComponents>>;
export {};
//# sourceMappingURL=NavCol.d.ts.map