UNPKG

@types/node-os-utils

Version:
29 lines (20 loc) 360 B
export default class Os { oos(): () => Promise<string>; platform(): Platform; uptime(): number; ip(): string; hostname(): string; type(): string; arch(): string; } type Platform = | "aix" | "android" | "darwin" | "freebsd" | "linux" | "openbsd" | "sunos" | "win32" | "cygwin"; export {};