Skip to content

Commit

Permalink
Add base kind
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jan 31, 2025
1 parent c736de0 commit f14d60b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions denops/@ddu-kinds/base.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { type ActionArguments, ActionFlags } from "../ddu/types.ts";

Check failure on line 1 in denops/@ddu-kinds/base.ts

View workflow job for this annotation

GitHub Actions / deno-lint

All import identifiers are used in types
import { BaseKind } from "../ddu/base/kind.ts";

type Params = Record<string, never>;

export class Kind extends BaseKind<Params> {
override actions: Record<
string,
(args: ActionArguments<Params>) => Promise<ActionFlags>
> = {};

override params(): Params {
return {};
}
}

0 comments on commit f14d60b

Please sign in to comment.