Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Make isOnline required in SessionInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodepixi committed Apr 29, 2021
1 parent 9fba86b commit 753a7e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth/session/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export interface SessionInterface {
readonly id: string;
shop: string;
state: string;
isOnline: boolean;
scope?: string;
expires?: Date;
isOnline?: boolean;
accessToken?: string;
onlineAccessInfo?: OnlineAccessInfo;
isActive(): boolean;
Expand Down

0 comments on commit 753a7e8

Please # to comment.