@bolttech/server-side-next
Version:
This library was generated with [Nx](https://nx.dev).
14 lines (13 loc) • 429 B
TypeScript
import BaseMapper from './base';
import { Component, ImageProps } from '../types';
export declare enum ImageTargetsEnum {
option1 = "Both",
option2 = "Desktop",
option3 = "Mobile"
}
export declare type ImageTargets = 'Both' | 'Desktop' | 'Mobile';
declare class ModuleImage extends BaseMapper {
generateComponent(): Promise<Component<ImageProps>>;
private getProps;
}
export default ModuleImage;