AboutSupportDeveloper GuideVersion 47.154.100.2
OpenFin JavaScript API
    Preparing search index...

    Interface OSInfo

    The keys represent the output from calling individual Node os APIs. For example, userInfo will have the output of calling os.userInfo(). For more information see Node os API docs

    interface OSInfo {
        hostname: string;
        networkInterfaces: Record<string, NodeNetworkInterfaceInfo[] | undefined>;
        platform: string;
        release: string;
        userInfo: NodeUserInfo;
        version: string;
    }
    Index
    hostname: string
    networkInterfaces: Record<string, NodeNetworkInterfaceInfo[] | undefined>
    platform: string
    release: string
    userInfo: NodeUserInfo

    Throws if a user has no username or homedir. See Node os.userInfo docs for more info

    version: string