Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Oct 26, 2023
1 parent 7e224b0 commit 13e6b55
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion denops/dpp/base/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ export type GetLogCommandsArguments<Params extends BaseProtocolParams> = {
plugin: Plugin;
protocolOptions: ProtocolOptions;
protocolParams: Params;
newRev: string;
oldRev: string;
};

export type GetRevisionLockCommandsArguments<
Expand All @@ -51,15 +53,16 @@ export type GetRollbackCommandsArguments<Params extends BaseProtocolParams> = {
plugin: Plugin;
protocolOptions: ProtocolOptions;
protocolParams: Params;
rev: string;
};

export type GetDiffCommandsArguments<Params extends BaseProtocolParams> = {
denops: Denops;
plugin: Plugin;
protocolOptions: ProtocolOptions;
protocolParams: Params;
oldRev: string;
newRev: string;
oldRev: string;
};

export type GetRevisionArguments<Params extends BaseProtocolParams> = {
Expand Down

0 comments on commit 13e6b55

Please sign in to comment.