Skip to content

Commit

Permalink
Merge pull request #128 from mityu/fix-type
Browse files Browse the repository at this point in the history
fix: Missing "name" argument of setAlias in ConfigArguments
  • Loading branch information
Shougo authored Dec 4, 2024
2 parents aa740d1 + cfbffbb commit 6d4ada8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion denops/ddu/base/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { Denops } from "jsr:@denops/std@~7.4.0";
export type ConfigArguments = {
denops: Denops;
contextBuilder: ContextBuilder;
setAlias: (type: DduAliasType, alias: string, base: string) => void;
setAlias: (name: string, type: DduAliasType, alias: string, base: string) => void;
};

export abstract class BaseConfig {
Expand Down

0 comments on commit 6d4ada8

Please sign in to comment.