UNPKG

@shgysk8zer0/slack

Version:

An npm package for sending messages in Slack

20 lines (14 loc) 220 B
'use strict'; class SlackBase { #type; constructor() { this.#type = this.constructor.TYPE; } get type() { return this.#type; } toJSON() { return { type: this.#type }; } } exports.SlackBase = SlackBase;