Innovenergy_trunk/frontend/node_modules/get-os-info/lib/index.d.ts

10 lines
354 B
TypeScript

import getLinuxInfo from './utils/get-linux-info';
import getWindowsInfo from './utils/get-windows-info';
import getMacInfo from './utils/get-mac-info';
export interface OSInfo {
name: string;
version: string;
}
export default function getOSInfo(): Promise<OSInfo | null>;
export { getMacInfo, getWindowsInfo, getLinuxInfo, getOSInfo };