Make message field optional (#43532)

This commit is contained in:
Bond
2020-04-03 16:58:24 -07:00
committed by GitHub
parent 534e730f06
commit 378e67bfe3
+1 -1
View File
@@ -16,7 +16,7 @@ interface IStrategyOptions {
passReqToCallback?: boolean;
}
interface IVerifyOptions {
message: string;
message?: string;
scope: string | Array<string>;
}