Skip to content

Commit

Permalink
Fix eslint disable rule
Browse files Browse the repository at this point in the history
  • Loading branch information
sw-joelmut committed May 6, 2022
1 parent e28b6ce commit 36bef89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ export class BindToActivity implements TemplateInterface<Partial<Activity>> {
*/
constructor(private readonly activity: Partial<Activity>) {}

// eslint-disable-next-line @typescript-eslint/ban-types
/**
* Binds the provided activity.
*
* @param _context The dialog context.
* @param _data Data to bind to. If Null, then dc.State will be used.
* @returns The linked activity.
*/
// eslint-disable-next-line @typescript-eslint/ban-types
async bind(_context: DialogContext, _data?: object): Promise<Partial<Activity>> {
return this.activity;
}
Expand Down

0 comments on commit 36bef89

Please sign in to comment.