Skip to content

Commit

Permalink
fix: make ttl optional in ClientCapabilityOptions (#707)
Browse files Browse the repository at this point in the history
Resolve issue #699 by making ttl optional in ClientCapabilityOptions
since the constructor doesn't require a value and provides a default.
  • Loading branch information
ghmeier authored Nov 10, 2021
1 parent c3c99e1 commit 11f728a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jwt/ClientCapability.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ declare namespace ClientCapability {
export interface ClientCapabilityOptions {
accountSid: string;
authToken: string;
ttl: number;
ttl?: number;
}
}

Expand Down

0 comments on commit 11f728a

Please sign in to comment.