UNPKG
@shgysk8zer0/slack
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
An npm package for sending messages in Slack
github.com/shgysk8zer0/slack
shgysk8zer0/slack
@shgysk8zer0/slack
/
block
/
divider.js
11 lines
(8 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
SlackBlock
}
from
'./block.js'
;
import
{ createFactory }
from
'../functions.js'
;
export
class
SlackDividerBlock
extends
SlackBlock
{
static
get
TYPE
() {
return
'divider'
; } }
export
const
createSlackDividerBlock =
createFactory
(
SlackDividerBlock
);