import { AssetSize } from './asset-size.interface'; import { PIGMaskInterface } from './index'; export interface PIGLayerImageInterface { asset_size: AssetSize; background: string; color_marker: string; color_overlay: boolean; error: string; foreground: { blend_mode: string; image: string; }; height: number; masks: PIGMaskInterface[]; name: string; width: number; }