Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
pushLocation(
location: LineTypes.Location,
options?: LineTypes.MessageOptions
) {
return this.push([Line.createLocation(location, options)], options);
}
replyLocation(
location: LineTypes.Location,
options?: LineTypes.MessageOptions
) {
return this.reply([Line.createLocation(location, options)], options);
}
sendLocation(
location: LineTypes.Location,
options?: LineTypes.MessageOptions
) {
return this.send([Line.createLocation(location, options)], options);
}