UNPKG

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

Version:

Endevor Bridge for Git Rest client

10 lines (9 loc) 264 B
import { LogAction } from "./LogAction"; import { RequestMethod } from "../AbstractRequest"; export class GetLogFiles extends LogAction { constructor(nodeId) { super(); this.method = RequestMethod.GET; this.params = { nodeId }; } }