@blocklet/images
Version:
support functions for blocklet image validation
11 lines (10 loc) • 309 B
TypeScript
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 {};