coersystem
Version:
Library for Angular projects
16 lines (15 loc) • 372 B
TypeScript
export interface IFileImage {
value: string | File | null | undefined;
name?: string;
width?: string;
maxWidth?: string;
height?: string;
maxHeight?: string;
marginTop?: string;
marginRight?: string;
marginBottom?: string;
marginLeft?: string;
allowDelete?: boolean;
allowExpand?: boolean;
noImage?: 'IMAGE' | 'USER';
}