File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ import { YTNode } from '../../helpers.js' ;
2+ import { type RawNode } from '../../index.js' ;
3+
4+ type Identifier = {
5+ surface : string ,
6+ tag : string ;
7+ }
8+
9+ export default class UpdateEngagementPanelContentCommand extends YTNode {
10+ static type = 'UpdateEngagementPanelContentCommand' ;
11+
12+ public content_source_panel_identifier ?: Identifier ;
13+ public target_panel_identifier ?: Identifier ;
14+
15+ constructor ( data : RawNode ) {
16+ super ( ) ;
17+ this . content_source_panel_identifier = data . contentSourcePanelIdentifier ;
18+ this . target_panel_identifier = data . targetPanelIdentifier ;
19+ }
20+ }
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ export { default as ContinuationCommand } from './classes/commands/ContinuationC
8383export { default as GetKidsBlocklistPickerCommand } from './classes/commands/GetKidsBlocklistPickerCommand.js' ;
8484export { default as RunAttestationCommand } from './classes/commands/RunAttestationCommand.js' ;
8585export { default as ShowDialogCommand } from './classes/commands/ShowDialogCommand.js' ;
86+ export { default as UpdateEngagementPanelContentCommand } from './classes/commands/UpdateEngagementPanelContentCommand.js' ;
8687export { default as AuthorCommentBadge } from './classes/comments/AuthorCommentBadge.js' ;
8788export { default as CommentActionButtons } from './classes/comments/CommentActionButtons.js' ;
8889export { default as CommentDialog } from './classes/comments/CommentDialog.js' ;
You can’t perform that action at this time.
0 commit comments