UNPKG

trm-client

Version:

TRM (Transport Request Manager) Client

9 lines (8 loc) 264 B
import { Login, RESTConnection, RFCConnection } from "trm-core"; import { SystemConnectorType } from "../utils"; export type SystemAliasData = { alias: string; type: SystemConnectorType; connection: RESTConnection | RFCConnection; login: Login; };