Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
replySticker(
sticker: Omit,
options?: LineTypes.MessageOptions
) {
return this.reply([Line.createSticker(sticker, options)], options);
}
pushSticker(
sticker: Omit,
options?: LineTypes.MessageOptions
) {
return this.push([Line.createSticker(sticker, options)], options);
}
sendSticker(
sticker: Omit,
options?: LineTypes.MessageOptions
) {
return this.send([Line.createSticker(sticker, options)], options);
}