UNPKG

@thesameeric/fileguard

Version:

A file validation library for node js

10 lines (9 loc) 235 B
export declare class FileGuard { file: any; errorMessage: string[]; error: boolean; constructor(inputFile: any); type(allowedFileTypes: string[]): this; size(fileSize: number): this; private errorHandler; }