Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Aug 30, 2024
1 parent 53f0872 commit 890b3f7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions denops/@ddu-kinds/word.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
import {
ActionFlags,
type Actions,
BaseKind,
type BaseParams,
type Context,
type DduItem,
type Denops,
type PreviewContext,
type Previewer,
} from "jsr:@shougo/ddu-vim@~5.0.0/types";
} from "jsr:@shougo/ddu-vim@~6.1.0/types";
import { BaseKind } from "jsr:@shougo/ddu-vim@~6.1.0/kind";
import type { DdcItem } from "jsr:@shougo/ddc-vim@~6.0.0/types";

import * as fn from "jsr:@denops/std@~7.0.1/function";
import * as vars from "jsr:@denops/std@~7.0.1/variable";
import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import * as vars from "jsr:@denops/std@~7.1.0/variable";

export type ActionData = {
text: string;
Expand Down Expand Up @@ -102,7 +103,7 @@ export class Kind extends BaseKind<Params> {
override getPreviewer(args: {
denops: Denops;
item: DduItem;
actionParams: unknown;
actionParams: BaseParams;
previewContext: PreviewContext;
}): Promise<Previewer | undefined> {
const action = args.item.action as ActionData;
Expand Down

0 comments on commit 890b3f7

Please sign in to comment.