/** * */ export declare type PitmartLogFileOptions = { prefix: string; usedate?: boolean; extension: string; }; export default class Generator { /** * getFileName * * return filename * filename="." * dinamic_value depends of usedate on options. default "YYYYMMDDHH" * Example: * options:{ * sufix: "pitmart", * usedate: true, * extension: "log" * } * results: * filename="pitmart2022070114.log" * @param options * @returns */ static getFileName(options: PitmartLogFileOptions): string; } //# sourceMappingURL=generator.d.ts.map