diff --git a/lib/actions/fileAction.ts b/lib/actions/fileAction.ts index 2ce445b1..5e85169e 100644 --- a/lib/actions/fileAction.ts +++ b/lib/actions/fileAction.ts @@ -102,12 +102,12 @@ export interface FileActionData { /** * If true, the renderInline function will be called */ - inline?: (context: ActionContext) => boolean, + inline?: (context: ActionContextSingle) => boolean, /** * If defined, the returned html element will be * appended before the actions menu. */ - renderInline?: (context: ActionContext) => Promise, + renderInline?: (context: ActionContextSingle) => Promise, } export class FileAction {