File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- export { default } from './CommandInbox' ;
1+ import CommandClear from './CommandClear' ;
2+ import CommandRead from './CommandRead' ;
3+ import CommandRemove from './CommandRemove' ;
4+ import CommandPolykey from '../../CommandPolykey' ;
5+
6+ class CommandInbox extends CommandPolykey {
7+ constructor ( ...args : ConstructorParameters < typeof CommandPolykey > ) {
8+ super ( ...args ) ;
9+ this . name ( 'inbox' ) ;
10+ this . description ( 'Notifications Inbox Operations' ) ;
11+ this . addCommand ( new CommandClear ( ...args ) ) ;
12+ this . addCommand ( new CommandRead ( ...args ) ) ;
13+ this . addCommand ( new CommandRemove ( ...args ) ) ;
14+ }
15+ }
16+
17+ export default CommandInbox ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- export { default } from './CommandOutbox' ;
1+ import CommandClear from './CommandClear' ;
2+ import CommandRead from './CommandRead' ;
3+ import CommandRemove from './CommandRemove' ;
4+ import CommandPolykey from '../../CommandPolykey' ;
5+
6+ class CommandOutbox extends CommandPolykey {
7+ constructor ( ...args : ConstructorParameters < typeof CommandPolykey > ) {
8+ super ( ...args ) ;
9+ this . name ( 'outbox' ) ;
10+ this . description ( 'Notifications Outbox Operations' ) ;
11+ this . addCommand ( new CommandClear ( ...args ) ) ;
12+ this . addCommand ( new CommandRead ( ...args ) ) ;
13+ this . addCommand ( new CommandRemove ( ...args ) ) ;
14+ }
15+ }
16+
17+ export default CommandOutbox ;
You can’t perform that action at this time.
0 commit comments