UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

18 lines (15 loc) 673 B
import { OverTheBoxRemoteAccessUserInfos } from './OverTheBoxRemoteAccessUserInfos.js'; import { OverTheBoxRemoteAccessConnectionInfos } from './OverTheBoxRemoteAccessConnectionInfos.js'; import { OverTheBoxRemoteAccessStatusEnum } from './OverTheBoxRemoteAccessStatusEnum.js'; type OverTheBoxRemoteAccess = { accepted?: boolean; askDate?: Date; authorizedBy?: string | null; connectionInfos?: OverTheBoxRemoteAccessConnectionInfos; expirationDate?: Date; exposedPort?: number; remoteAccessId?: string; remoteUserInfos?: OverTheBoxRemoteAccessUserInfos; status?: OverTheBoxRemoteAccessStatusEnum; }; export { OverTheBoxRemoteAccess };