UNPKG

@broadcom/endevor-bridge-for-git-rest-api

Version:

Endevor Bridge for Git Rest client

11 lines (10 loc) 313 B
import { LogAction } from "./LogAction"; import { RequestMethod } from "../AbstractRequest"; export class ReadLogFile extends LogAction { constructor(name, nodeId) { super(); this.method = RequestMethod.GET; this.params = { nodeId }; this.customPath = `/view/${name}`; } }