UNPKG

@golemio/energetics

Version:
13 lines (12 loc) 374 B
import { ISimpleConfig } from "@golemio/core/dist/helpers/configuration/ISimpleConfig"; interface FileInfo { name: string; } export declare class PreElectroHelper { private config; private ftpClient; constructor(config: ISimpleConfig); listAllFiles(): Promise<FileInfo[]>; filterFilesByDate(from: string, to: string): Promise<string[]>; } export {};