aiao-io/aiao

View on GitHub
libs/elements-cdk/src/lib/components/img/img.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IImgArea {
  shape: 'rect' | 'poly' | 'circle';
  coordRatios: number[];
  href?: string;
  alt?: string;
  target?: string;
}

export interface IImg {
  map?: IImgArea[];
  alt?: string;
  src?: string;
}