ilastlog
Version:
alternative lastlog because of Ubuntu 24.04.1. The distros have had the libpam excluding lastlog.so. therefore, I personally needed.
7 lines (6 loc) • 405 B
TypeScript
import { Option } from "./interface/index";
declare const calculateWrapper: (textArr: string[], opt?: Option) => void;
declare const calculateWrapperAsync: (textArr: string[], opt?: Option) => Promise<void>;
declare function setOptions(opts: Option): Option;
declare const getOptions: () => Option;
export { calculateWrapper as ilastlog, calculateWrapperAsync as ilastlogAsync, setOptions, getOptions, };