UNPKG

tami

Version:

Typescript client for asterisk's AMI

14 lines (13 loc) 334 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Ping = void 0; const Action_1 = require("./Action"); class Ping extends Action_1.Action { constructor() { super(); } getAction() { return `Action: Ping\r\nActionID: ${this.actionId}\r\n\r\n`; } } exports.Ping = Ping;