UNPKG

zipster

Version:

TypeScript library built for Node backends to create ZIP files with password protection

23 lines 521 B
/** * File Parts encapsulates the important components of a file and it's path */ declare class FileParts { private readonly path; private readonly fileName; private readonly fileExtension; constructor(path: string); /** * Get the name of the file */ getName(): string; /** * Get the extension of the file */ getExtension(): string; /** * Get the path of the file */ getPath(): string; } export { FileParts }; //# sourceMappingURL=FileParts.d.ts.map