cisco-vpn-rdp-connecter
Version:
Connect to Cisco AnyConnect VPN and open a Microsoft Remote Desktop (RDP) window
47 lines (46 loc) • 866 B
TypeScript
export type Config = {
vpn: {
server: string;
group: string;
groupName: string;
username: string;
password: string;
};
rdp: {
server: string;
};
onlyVpn: boolean;
};
export declare const schema: {
vpn: {
type: string;
properties: {
server: {
type: string;
};
group: {
type: string;
};
groupName: {
type: string;
};
username: {
type: string;
};
password: {
type: string;
};
};
};
rdp: {
type: string;
properties: {
server: {
type: string;
};
};
};
onlyVpn: {
type: string;
};
};