Skip to content

Commit

Permalink
fix: properties can be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Nov 23, 2024
1 parent 79b26ef commit 91879d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sign/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ export interface DeleteSpace {

export interface EmailSubscription {
from?: string;
email: string;
subscriptions: string[];
email?: string;
subscriptions?: string[];
timestamp?: number;
}

Expand Down

0 comments on commit 91879d9

Please sign in to comment.