Skip to content

Commit

Permalink
fix(passport): remove IProtocol interface
Browse files Browse the repository at this point in the history
BREAKING CHANGE: remove `IProtocol`. Use `ProtocolMethods` instead
  • Loading branch information
Romakita committed Apr 14, 2022
1 parent 0faa629 commit 8f308a9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/security/passport/src/interfaces/ProtocolMethods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,4 @@ import {OnInstall} from "./OnInstall";
import {OnVerify} from "./OnVerify";
import {BeforeInstall} from "./BeforeInstall";

/**
* @deprecated Use ProtocolMethods instead
*/
export interface IProtocol<Settings = any> extends OnVerify, OnInstall, BeforeInstall<Settings> {}
export interface ProtocolMethods<Settings = any> extends OnVerify, OnInstall, BeforeInstall<Settings> {}

0 comments on commit 8f308a9

Please sign in to comment.