imagegenerator
Version:
Generate PNG Image for a Quote provided
27 lines (24 loc) • 561 B
text/typescript
/**
* ImageProperties
* @properties for Image
*/
interface ImageProperties {
backgroundColor?: string;
backgroundImage?: string;
color?: string;
fontFamily?: string;
fontSize?: number;
height?: number;
width?: number;
padding?: number;
textAlign?: string;
wordWrap?: string;
display?: string;
verticalAlign?: string;
boxSizing?: string;
backgroundSize?: string;
fontStyle?: string;
textDecoration?: string;
fontWeight?:number;
}
export default ImageProperties;