UNPKG

@blocklet/images

Version:

support functions for blocklet image validation

11 lines (10 loc) 309 B
import { ImageType } from 'image-type'; type ISizeKB = number; interface ILogoValidateOptions { maxSize?: ISizeKB; minWidth?: number; logoType?: ImageType[]; extractedFilepath: string; } export declare const validateLogo: (logoName: string, options: ILogoValidateOptions) => any[]; export {};